From 719c93ec38602546b809c92bfd36eab03ae8d7cb Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 27 Nov 2024 17:32:28 -0500 Subject: [PATCH] get it nearly working --- grammar.js | 67 +- src/grammar.json | 272 +- src/node-types.json | 14 +- src/parser.c | 173126 ++++++++++++++++++++++++++--------------- 4 files changed, 111800 insertions(+), 61679 deletions(-) diff --git a/grammar.js b/grammar.js index 0bf12ba..32bf5e5 100644 --- a/grammar.js +++ b/grammar.js @@ -31,19 +31,43 @@ module.exports = grammar({ ], reserved: { + // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#reserved_words global: $ => [ + 'break', + 'case', + 'catch', + 'class', 'const', + 'continue', + 'debugger', + 'default', + 'delete', 'do', 'else', + 'export', + 'extends', + 'false', 'finally', 'for', 'function', 'if', - 'let', + 'import', + 'in', + 'instanceof', + 'new', + 'null', 'return', + 'super', + 'switch', + 'this', 'throw', + 'true', + 'try', + 'typeof', 'var', + 'void', 'while', + 'with', ], properties: $ => [], }, @@ -62,7 +86,6 @@ module.exports = grammar({ $._expressions, $._semicolon, $._identifier, - $._reserved_identifier, $._jsx_attribute, $._jsx_element_name, $._jsx_child, @@ -108,9 +131,6 @@ module.exports = grammar({ conflicts: $ => [ [$.primary_expression, $._property_name], - [$.primary_expression, $._property_name, $.arrow_function], - [$.primary_expression, $.arrow_function], - [$.primary_expression, $.method_definition], [$.primary_expression, $.rest_pattern], [$.primary_expression, $.pattern], [$.primary_expression, $._for_header], @@ -122,7 +142,6 @@ module.exports = grammar({ [$.labeled_statement, $._property_name], [$.computed_property_name, $.array], [$.binary_expression, $._initializer], - [$.class_static_block, $._property_name], ], word: $ => $.identifier, @@ -191,6 +210,7 @@ module.exports = grammar({ _module_export_name: $ => choice( $.identifier, $.string, + 'default', ), declaration: $ => choice( @@ -443,7 +463,7 @@ module.exports = grammar({ empty_statement: _ => ';', labeled_statement: $ => prec.dynamic(-1, seq( - field('label', alias(choice($.identifier, $._reserved_identifier), $.statement_identifier)), + field('label', alias($.identifier, $.statement_identifier)), ':', field('body', $.statement), )), @@ -515,7 +535,6 @@ module.exports = grammar({ $.member_expression, $.parenthesized_expression, $._identifier, - alias($._reserved_identifier, $.identifier), $.this, $.super, $.number, @@ -548,10 +567,7 @@ module.exports = grammar({ $.pair, $.spread_element, $.method_definition, - alias( - choice($.identifier, $._reserved_identifier), - $.shorthand_property_identifier, - ), + alias($.identifier, $.shorthand_property_identifier), ))), '}', )), @@ -562,10 +578,7 @@ module.exports = grammar({ $.pair_pattern, $.rest_pattern, $.object_assignment_pattern, - alias( - choice($.identifier, $._reserved_identifier), - $.shorthand_property_identifier_pattern, - ), + alias($.identifier, $.shorthand_property_identifier_pattern), ))), '}', )), @@ -579,10 +592,7 @@ module.exports = grammar({ object_assignment_pattern: $ => seq( field('left', choice( $._destructuring_pattern, - alias( - choice($._reserved_identifier, $.identifier), - $.shorthand_property_identifier_pattern, - ), + alias($.identifier, $.shorthand_property_identifier_pattern), )), '=', field('right', $.expression), @@ -784,7 +794,6 @@ module.exports = grammar({ optional('async'), choice( field('parameter', choice( - alias($._reserved_identifier, $.identifier), $.identifier, )), $._call_signature, @@ -847,7 +856,6 @@ module.exports = grammar({ $.member_expression, $.subscript_expression, $._identifier, - alias($._reserved_identifier, $.identifier), $._destructuring_pattern, ), @@ -860,7 +868,6 @@ module.exports = grammar({ _augmented_assignment_lhs: $ => choice( $.member_expression, $.subscript_expression, - alias($._reserved_identifier, $.identifier), $.identifier, $.parenthesized_expression, ), @@ -1218,10 +1225,7 @@ module.exports = grammar({ ), _property_name: $ => reserved('properties', choice( - alias(choice( - $.identifier, - $._reserved_identifier, - ), $.property_identifier), + alias($.identifier, $.property_identifier), $.private_property_identifier, $.string, $.number, @@ -1234,15 +1238,6 @@ module.exports = grammar({ ']', ), - _reserved_identifier: _ => choice( - 'get', - 'set', - 'async', - 'static', - 'export', - 'let', - ), - _semicolon: $ => choice($._automatic_semicolon, ';'), }, }); diff --git a/src/grammar.json b/src/grammar.json index 4ac9d2b..7b4d12a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -292,6 +292,10 @@ { "type": "SYMBOL", "name": "string" + }, + { + "type": "STRING", + "value": "default" } ] }, @@ -1496,17 +1500,8 @@ "content": { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "statement_identifier" @@ -1782,15 +1777,6 @@ "type": "SYMBOL", "name": "_identifier" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - }, { "type": "SYMBOL", "name": "this" @@ -1941,17 +1927,8 @@ { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "shorthand_property_identifier" @@ -1993,17 +1970,8 @@ { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "shorthand_property_identifier" @@ -2069,17 +2037,8 @@ { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "shorthand_property_identifier_pattern" @@ -2121,17 +2080,8 @@ { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "shorthand_property_identifier_pattern" @@ -2201,17 +2151,8 @@ { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "shorthand_property_identifier_pattern" @@ -3283,15 +3224,6 @@ "content": { "type": "CHOICE", "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - }, { "type": "SYMBOL", "name": "identifier" @@ -3672,15 +3604,6 @@ "type": "SYMBOL", "name": "_identifier" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - }, { "type": "SYMBOL", "name": "_destructuring_pattern" @@ -3736,15 +3659,6 @@ "type": "SYMBOL", "name": "subscript_expression" }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - }, { "type": "SYMBOL", "name": "identifier" @@ -6523,17 +6437,8 @@ { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "SYMBOL", + "name": "identifier" }, "named": true, "value": "property_identifier" @@ -6575,35 +6480,6 @@ } ] }, - "_reserved_identifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "get" - }, - { - "type": "STRING", - "value": "set" - }, - { - "type": "STRING", - "value": "async" - }, - { - "type": "STRING", - "value": "static" - }, - { - "type": "STRING", - "value": "export" - }, - { - "type": "STRING", - "value": "let" - } - ] - }, "_semicolon": { "type": "CHOICE", "members": [ @@ -6637,19 +6513,6 @@ "primary_expression", "_property_name" ], - [ - "primary_expression", - "_property_name", - "arrow_function" - ], - [ - "primary_expression", - "arrow_function" - ], - [ - "primary_expression", - "method_definition" - ], [ "primary_expression", "rest_pattern" @@ -6693,10 +6556,6 @@ [ "binary_expression", "_initializer" - ], - [ - "class_static_block", - "_property_name" ] ], "precedences": [ @@ -6919,7 +6778,6 @@ "_expressions", "_semicolon", "_identifier", - "_reserved_identifier", "_jsx_attribute", "_jsx_element_name", "_jsx_child", @@ -6938,10 +6796,42 @@ ], "reserved": { "global": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "case" + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "class" + }, { "type": "STRING", "value": "const" }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "debugger" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": "delete" + }, { "type": "STRING", "value": "do" @@ -6950,6 +6840,18 @@ "type": "STRING", "value": "else" }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": "false" + }, { "type": "STRING", "value": "finally" @@ -6968,23 +6870,71 @@ }, { "type": "STRING", - "value": "let" + "value": "import" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "instanceof" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "null" }, { "type": "STRING", "value": "return" }, + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "switch" + }, + { + "type": "STRING", + "value": "this" + }, { "type": "STRING", "value": "throw" }, + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "typeof" + }, { "type": "STRING", "value": "var" }, + { + "type": "STRING", + "value": "void" + }, { "type": "STRING", "value": "while" + }, + { + "type": "STRING", + "value": "with" } ], "properties": [] diff --git a/src/node-types.json b/src/node-types.json index 7f751b3..1db0332 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1090,6 +1090,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "default", + "named": false + }, { "type": "identifier", "named": true @@ -1104,6 +1108,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "default", + "named": false + }, { "type": "identifier", "named": true @@ -1707,6 +1715,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "default", + "named": false + }, { "type": "identifier", "named": true @@ -2162,7 +2174,7 @@ "fields": {}, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", diff --git a/src/parser.c b/src/parser.c index 1ee45d9..7a56502 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically generated by tree-sitter v0.25.0 (ebb9df536c1fa3f7cc733cdc4c749d0b9a1bc096) */ +/* Automatically generated by tree-sitter v0.25.0 (ca4406592b13ac2c22457365a0757771a96212ab) */ #include "tree_sitter/parser.h" @@ -7,16 +7,16 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 1722 -#define LARGE_STATE_COUNT 326 -#define SYMBOL_COUNT 259 +#define STATE_COUNT 2474 +#define LARGE_STATE_COUNT 665 +#define SYMBOL_COUNT 260 #define ALIAS_COUNT 4 #define TOKEN_COUNT 133 #define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define MAX_RESERVED_WORD_SET_SIZE 12 -#define PRODUCTION_ID_COUNT 111 +#define MAX_RESERVED_WORD_SET_SIZE 35 +#define PRODUCTION_ID_COUNT 106 enum ts_symbol_identifiers { sym_identifier = 1, @@ -277,10 +277,11 @@ enum ts_symbol_identifiers { aux_sym_template_string_repeat1 = 256, aux_sym_class_body_repeat1 = 257, aux_sym_formal_parameters_repeat1 = 258, - alias_sym_property_identifier = 259, - alias_sym_shorthand_property_identifier = 260, - alias_sym_shorthand_property_identifier_pattern = 261, - alias_sym_statement_identifier = 262, + aux_sym_non_reserved_keyword = 259, + alias_sym_property_identifier = 260, + alias_sym_shorthand_property_identifier = 261, + alias_sym_shorthand_property_identifier_pattern = 262, + alias_sym_statement_identifier = 263, }; static const char * const ts_symbol_names[] = { @@ -543,6 +544,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_template_string_repeat1] = "template_string_repeat1", [aux_sym_class_body_repeat1] = "class_body_repeat1", [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", + [aux_sym_non_reserved_keyword] = "non_reserved_keyword", [alias_sym_property_identifier] = "property_identifier", [alias_sym_shorthand_property_identifier] = "shorthand_property_identifier", [alias_sym_shorthand_property_identifier_pattern] = "shorthand_property_identifier_pattern", @@ -809,6 +811,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, + [aux_sym_non_reserved_keyword] = aux_sym_non_reserved_keyword, [alias_sym_property_identifier] = alias_sym_property_identifier, [alias_sym_shorthand_property_identifier] = alias_sym_shorthand_property_identifier, [alias_sym_shorthand_property_identifier_pattern] = alias_sym_shorthand_property_identifier_pattern, @@ -1857,6 +1860,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_non_reserved_keyword] = { + .visible = false, + .named = true, + }, [alias_sym_property_identifier] = { .visible = true, .named = true, @@ -1955,111 +1962,107 @@ static const char * const ts_field_names[] = { }; static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [2] = {.index = 0, .length = 1}, - [3] = {.index = 1, .length = 1}, - [5] = {.index = 2, .length = 1}, - [6] = {.index = 3, .length = 1}, - [7] = {.index = 4, .length = 1}, - [8] = {.index = 5, .length = 2}, - [9] = {.index = 7, .length = 2}, - [10] = {.index = 9, .length = 2}, - [11] = {.index = 11, .length = 2}, - [12] = {.index = 13, .length = 2}, - [13] = {.index = 15, .length = 1}, - [14] = {.index = 16, .length = 2}, - [15] = {.index = 18, .length = 2}, - [16] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 1}, - [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 2}, - [23] = {.index = 27, .length = 1}, - [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 2}, - [26] = {.index = 32, .length = 6}, - [27] = {.index = 38, .length = 2}, - [28] = {.index = 40, .length = 2}, - [29] = {.index = 42, .length = 2}, - [30] = {.index = 44, .length = 1}, + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 1}, + [4] = {.index = 2, .length = 1}, + [5] = {.index = 3, .length = 1}, + [6] = {.index = 4, .length = 1}, + [7] = {.index = 5, .length = 2}, + [8] = {.index = 7, .length = 2}, + [9] = {.index = 9, .length = 2}, + [10] = {.index = 11, .length = 2}, + [11] = {.index = 13, .length = 2}, + [12] = {.index = 15, .length = 1}, + [15] = {.index = 16, .length = 1}, + [16] = {.index = 17, .length = 2}, + [17] = {.index = 19, .length = 2}, + [18] = {.index = 21, .length = 1}, + [19] = {.index = 22, .length = 2}, + [20] = {.index = 24, .length = 2}, + [21] = {.index = 26, .length = 6}, + [22] = {.index = 32, .length = 2}, + [23] = {.index = 34, .length = 2}, + [24] = {.index = 36, .length = 2}, + [25] = {.index = 38, .length = 1}, + [26] = {.index = 39, .length = 1}, + [27] = {.index = 40, .length = 1}, + [28] = {.index = 41, .length = 1}, + [29] = {.index = 42, .length = 1}, + [30] = {.index = 43, .length = 2}, [31] = {.index = 45, .length = 1}, - [32] = {.index = 46, .length = 1}, - [33] = {.index = 47, .length = 1}, - [34] = {.index = 48, .length = 1}, - [35] = {.index = 49, .length = 2}, - [36] = {.index = 51, .length = 1}, - [37] = {.index = 52, .length = 2}, - [38] = {.index = 54, .length = 2}, - [39] = {.index = 56, .length = 1}, - [40] = {.index = 18, .length = 2}, - [41] = {.index = 20, .length = 2}, - [42] = {.index = 57, .length = 3}, - [43] = {.index = 60, .length = 2}, - [44] = {.index = 60, .length = 2}, - [45] = {.index = 62, .length = 3}, - [46] = {.index = 62, .length = 3}, - [47] = {.index = 65, .length = 3}, - [48] = {.index = 68, .length = 2}, - [49] = {.index = 70, .length = 2}, - [50] = {.index = 72, .length = 2}, - [51] = {.index = 74, .length = 2}, - [52] = {.index = 76, .length = 1}, - [53] = {.index = 77, .length = 1}, - [54] = {.index = 18, .length = 2}, - [55] = {.index = 78, .length = 2}, - [56] = {.index = 80, .length = 3}, - [57] = {.index = 83, .length = 1}, - [58] = {.index = 84, .length = 3}, - [59] = {.index = 87, .length = 6}, - [60] = {.index = 93, .length = 2}, - [61] = {.index = 95, .length = 3}, - [62] = {.index = 98, .length = 2}, - [63] = {.index = 100, .length = 2}, - [64] = {.index = 102, .length = 1}, - [65] = {.index = 103, .length = 2}, - [66] = {.index = 105, .length = 2}, - [67] = {.index = 107, .length = 1}, - [68] = {.index = 108, .length = 2}, - [69] = {.index = 110, .length = 2}, - [70] = {.index = 112, .length = 2}, - [71] = {.index = 114, .length = 2}, - [72] = {.index = 112, .length = 2}, - [73] = {.index = 116, .length = 2}, - [74] = {.index = 118, .length = 3}, - [75] = {.index = 121, .length = 2}, - [76] = {.index = 123, .length = 2}, - [77] = {.index = 125, .length = 2}, - [78] = {.index = 127, .length = 3}, - [79] = {.index = 130, .length = 2}, - [80] = {.index = 132, .length = 2}, - [81] = {.index = 134, .length = 4}, - [82] = {.index = 138, .length = 2}, - [83] = {.index = 140, .length = 2}, - [84] = {.index = 142, .length = 3}, - [85] = {.index = 145, .length = 2}, - [86] = {.index = 147, .length = 3}, - [87] = {.index = 150, .length = 3}, - [88] = {.index = 153, .length = 3}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 3}, - [91] = {.index = 161, .length = 4}, - [92] = {.index = 165, .length = 3}, - [93] = {.index = 165, .length = 3}, - [94] = {.index = 168, .length = 3}, - [95] = {.index = 171, .length = 3}, - [96] = {.index = 174, .length = 3}, - [97] = {.index = 177, .length = 4}, - [98] = {.index = 181, .length = 2}, - [99] = {.index = 183, .length = 4}, - [100] = {.index = 187, .length = 4}, - [101] = {.index = 191, .length = 4}, - [102] = {.index = 195, .length = 3}, - [103] = {.index = 198, .length = 2}, - [104] = {.index = 200, .length = 4}, - [105] = {.index = 204, .length = 5}, - [106] = {.index = 209, .length = 4}, - [107] = {.index = 213, .length = 5}, - [108] = {.index = 218, .length = 4}, - [109] = {.index = 222, .length = 4}, - [110] = {.index = 226, .length = 5}, + [32] = {.index = 46, .length = 2}, + [33] = {.index = 48, .length = 2}, + [34] = {.index = 50, .length = 1}, + [35] = {.index = 51, .length = 2}, + [36] = {.index = 53, .length = 2}, + [37] = {.index = 55, .length = 2}, + [38] = {.index = 57, .length = 3}, + [39] = {.index = 60, .length = 2}, + [40] = {.index = 60, .length = 2}, + [41] = {.index = 62, .length = 3}, + [42] = {.index = 62, .length = 3}, + [43] = {.index = 65, .length = 3}, + [44] = {.index = 68, .length = 2}, + [45] = {.index = 70, .length = 2}, + [46] = {.index = 72, .length = 2}, + [47] = {.index = 74, .length = 2}, + [48] = {.index = 76, .length = 1}, + [49] = {.index = 77, .length = 1}, + [50] = {.index = 53, .length = 2}, + [51] = {.index = 78, .length = 2}, + [52] = {.index = 80, .length = 3}, + [53] = {.index = 83, .length = 1}, + [54] = {.index = 84, .length = 3}, + [55] = {.index = 87, .length = 6}, + [56] = {.index = 93, .length = 2}, + [57] = {.index = 95, .length = 3}, + [58] = {.index = 98, .length = 2}, + [59] = {.index = 100, .length = 2}, + [60] = {.index = 102, .length = 1}, + [61] = {.index = 103, .length = 2}, + [62] = {.index = 105, .length = 2}, + [63] = {.index = 107, .length = 1}, + [64] = {.index = 108, .length = 2}, + [65] = {.index = 110, .length = 2}, + [66] = {.index = 112, .length = 2}, + [67] = {.index = 114, .length = 2}, + [68] = {.index = 116, .length = 2}, + [69] = {.index = 118, .length = 3}, + [70] = {.index = 121, .length = 2}, + [71] = {.index = 123, .length = 2}, + [72] = {.index = 125, .length = 2}, + [73] = {.index = 127, .length = 3}, + [74] = {.index = 130, .length = 2}, + [75] = {.index = 132, .length = 2}, + [76] = {.index = 134, .length = 4}, + [77] = {.index = 138, .length = 2}, + [78] = {.index = 140, .length = 2}, + [79] = {.index = 142, .length = 3}, + [80] = {.index = 145, .length = 2}, + [81] = {.index = 147, .length = 3}, + [82] = {.index = 150, .length = 3}, + [83] = {.index = 153, .length = 3}, + [84] = {.index = 156, .length = 2}, + [85] = {.index = 158, .length = 3}, + [86] = {.index = 161, .length = 4}, + [87] = {.index = 165, .length = 3}, + [88] = {.index = 168, .length = 3}, + [89] = {.index = 171, .length = 3}, + [90] = {.index = 174, .length = 3}, + [91] = {.index = 177, .length = 4}, + [92] = {.index = 181, .length = 2}, + [93] = {.index = 183, .length = 4}, + [94] = {.index = 187, .length = 4}, + [95] = {.index = 191, .length = 4}, + [96] = {.index = 195, .length = 3}, + [97] = {.index = 198, .length = 2}, + [98] = {.index = 200, .length = 4}, + [99] = {.index = 204, .length = 5}, + [100] = {.index = 209, .length = 4}, + [101] = {.index = 213, .length = 5}, + [102] = {.index = 218, .length = 4}, + [103] = {.index = 222, .length = 4}, + [104] = {.index = 226, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2091,69 +2094,69 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [15] = {field_declaration, 2}, [16] = - {field_body, 2}, - {field_label, 0}, - [18] = - {field_left, 0}, - {field_right, 2}, - [20] = - {field_body, 2}, - {field_parameter, 0}, - [22] = {field_source, 1}, - [23] = + [17] = {field_body, 2}, {field_object, 1}, - [25] = + [19] = {field_name, 0}, {field_value, 1, .inherited = true}, - [27] = + [21] = {field_kind, 0}, - [28] = + [22] = {field_condition, 1}, {field_consequence, 2}, - [30] = + [24] = {field_body, 2}, {field_value, 1}, - [32] = + [26] = {field_body, 2}, {field_kind, 1, .inherited = true}, {field_left, 1, .inherited = true}, {field_operator, 1, .inherited = true}, {field_right, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [38] = + [32] = {field_body, 2}, {field_condition, 1}, - [40] = + [34] = {field_body, 1}, {field_handler, 2}, - [42] = + [36] = {field_body, 1}, {field_finalizer, 2}, - [44] = + [38] = {field_label, 1}, - [45] = + [39] = {field_name, 1}, - [46] = + [40] = {field_attribute, 0}, - [47] = + [41] = {field_member, 0}, - [48] = + [42] = {field_property, 0}, - [49] = + [43] = {field_body, 2}, {field_name, 1}, - [51] = + [45] = {field_body, 2}, - [52] = + [46] = {field_body, 2}, {field_parameters, 1}, - [54] = + [48] = {field_arguments, 2}, {field_constructor, 1}, - [56] = + [50] = {field_pattern, 1}, + [51] = + {field_body, 2}, + {field_label, 0}, + [53] = + {field_left, 0}, + {field_right, 2}, + [55] = + {field_body, 2}, + {field_parameter, 0}, [57] = {field_left, 0}, {field_operator, 1}, @@ -2236,10 +2239,10 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 1}, [112] = {field_body, 3}, - {field_parameter, 1}, + {field_parameters, 2}, [114] = {field_body, 3}, - {field_parameters, 2}, + {field_parameter, 1}, [116] = {field_body, 3}, {field_parameters, 1}, @@ -2396,47 +2399,32 @@ static const TSFieldMapEntry ts_field_map_entries[] = { static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [1] = { - [0] = sym_identifier, - }, - [4] = { + [3] = { [0] = alias_sym_property_identifier, }, - [14] = { - [0] = alias_sym_statement_identifier, - }, - [15] = { - [0] = sym_identifier, - }, - [16] = { - [0] = sym_identifier, - }, - [17] = { + [13] = { [1] = alias_sym_shorthand_property_identifier, }, - [18] = { + [14] = { [1] = alias_sym_shorthand_property_identifier_pattern, }, - [19] = { - [1] = sym_identifier, - }, - [30] = { + [25] = { [1] = alias_sym_statement_identifier, }, - [43] = { + [35] = { + [0] = alias_sym_statement_identifier, + }, + [39] = { [2] = alias_sym_property_identifier, }, - [45] = { + [41] = { [2] = alias_sym_property_identifier, }, - [54] = { + [50] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [70] = { - [1] = sym_identifier, - }, - [92] = { - [1] = sym_identifier, + [105] = { + [0] = sym_identifier, }, }; @@ -2448,749 +2436,749 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 2, - [5] = 2, - [6] = 2, - [7] = 7, + [3] = 3, + [4] = 3, + [5] = 3, + [6] = 3, + [7] = 3, [8] = 8, [9] = 9, [10] = 10, [11] = 11, [12] = 12, [13] = 13, - [14] = 12, + [14] = 14, [15] = 15, - [16] = 12, - [17] = 15, - [18] = 18, - [19] = 15, - [20] = 20, - [21] = 12, - [22] = 15, - [23] = 15, - [24] = 12, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 30, - [32] = 32, - [33] = 27, - [34] = 28, - [35] = 25, + [16] = 16, + [17] = 17, + [18] = 11, + [19] = 19, + [20] = 8, + [21] = 21, + [22] = 22, + [23] = 16, + [24] = 16, + [25] = 17, + [26] = 17, + [27] = 17, + [28] = 16, + [29] = 17, + [30] = 16, + [31] = 31, + [32] = 11, + [33] = 11, + [34] = 34, + [35] = 2, [36] = 36, [37] = 37, - [38] = 29, + [38] = 38, [39] = 39, - [40] = 37, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, - [45] = 26, - [46] = 39, + [45] = 45, + [46] = 46, [47] = 47, [48] = 48, - [49] = 41, - [50] = 32, - [51] = 42, - [52] = 36, - [53] = 43, - [54] = 44, - [55] = 48, - [56] = 56, - [57] = 56, - [58] = 56, - [59] = 56, - [60] = 56, + [49] = 37, + [50] = 47, + [51] = 34, + [52] = 52, + [53] = 53, + [54] = 36, + [55] = 38, + [56] = 39, + [57] = 40, + [58] = 42, + [59] = 43, + [60] = 44, [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 76, - [79] = 76, - [80] = 76, - [81] = 76, - [82] = 76, - [83] = 83, - [84] = 84, - [85] = 84, - [86] = 83, - [87] = 87, - [88] = 87, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 89, - [93] = 93, - [94] = 93, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 96, - [100] = 100, - [101] = 96, - [102] = 102, - [103] = 103, - [104] = 104, - [105] = 104, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 110, - [112] = 108, - [113] = 113, - [114] = 114, + [62] = 11, + [63] = 61, + [64] = 11, + [65] = 48, + [66] = 61, + [67] = 37, + [68] = 47, + [69] = 14, + [70] = 34, + [71] = 52, + [72] = 53, + [73] = 36, + [74] = 38, + [75] = 39, + [76] = 40, + [77] = 42, + [78] = 43, + [79] = 44, + [80] = 45, + [81] = 52, + [82] = 48, + [83] = 53, + [84] = 45, + [85] = 14, + [86] = 11, + [87] = 14, + [88] = 11, + [89] = 11, + [90] = 11, + [91] = 14, + [92] = 11, + [93] = 11, + [94] = 11, + [95] = 14, + [96] = 11, + [97] = 11, + [98] = 14, + [99] = 14, + [100] = 14, + [101] = 11, + [102] = 11, + [103] = 14, + [104] = 14, + [105] = 14, + [106] = 11, + [107] = 14, + [108] = 14, + [109] = 11, + [110] = 14, + [111] = 14, + [112] = 14, + [113] = 14, + [114] = 14, [115] = 115, - [116] = 115, + [116] = 116, [117] = 117, [118] = 118, - [119] = 118, - [120] = 113, - [121] = 117, + [119] = 119, + [120] = 120, + [121] = 121, [122] = 122, [123] = 123, [124] = 124, [125] = 125, [126] = 126, [127] = 127, - [128] = 122, - [129] = 122, + [128] = 128, + [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 133, - [134] = 132, - [135] = 135, - [136] = 131, - [137] = 137, - [138] = 132, - [139] = 139, - [140] = 140, - [141] = 141, - [142] = 125, - [143] = 131, - [144] = 123, - [145] = 126, - [146] = 127, - [147] = 127, - [148] = 148, - [149] = 124, - [150] = 140, - [151] = 125, - [152] = 126, - [153] = 127, + [133] = 130, + [134] = 130, + [135] = 130, + [136] = 136, + [137] = 130, + [138] = 131, + [139] = 130, + [140] = 131, + [141] = 132, + [142] = 132, + [143] = 143, + [144] = 143, + [145] = 143, + [146] = 146, + [147] = 147, + [148] = 146, + [149] = 149, + [150] = 150, + [151] = 151, + [152] = 150, + [153] = 153, [154] = 154, [155] = 155, - [156] = 122, - [157] = 155, - [158] = 148, - [159] = 123, - [160] = 124, - [161] = 125, - [162] = 131, - [163] = 163, - [164] = 124, + [156] = 156, + [157] = 154, + [158] = 154, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, + [163] = 161, + [164] = 160, [165] = 165, - [166] = 123, - [167] = 124, - [168] = 125, - [169] = 126, - [170] = 127, - [171] = 122, - [172] = 131, - [173] = 126, - [174] = 123, + [166] = 166, + [167] = 167, + [168] = 19, + [169] = 166, + [170] = 170, + [171] = 170, + [172] = 170, + [173] = 166, + [174] = 174, [175] = 175, [176] = 176, [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 183, - [184] = 176, - [185] = 185, - [186] = 186, - [187] = 187, + [178] = 175, + [179] = 174, + [180] = 177, + [181] = 177, + [182] = 176, + [183] = 175, + [184] = 174, + [185] = 176, + [186] = 41, + [187] = 41, [188] = 188, [189] = 189, [190] = 190, [191] = 191, - [192] = 192, - [193] = 193, - [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 179, - [200] = 181, - [201] = 201, - [202] = 175, - [203] = 182, - [204] = 183, - [205] = 185, - [206] = 186, - [207] = 187, - [208] = 188, - [209] = 189, - [210] = 190, - [211] = 191, - [212] = 192, - [213] = 193, - [214] = 194, - [215] = 195, - [216] = 196, - [217] = 198, - [218] = 218, - [219] = 219, - [220] = 220, - [221] = 178, - [222] = 222, - [223] = 223, - [224] = 224, - [225] = 219, - [226] = 219, - [227] = 222, - [228] = 228, - [229] = 179, - [230] = 181, - [231] = 201, - [232] = 182, - [233] = 183, - [234] = 185, - [235] = 187, - [236] = 188, - [237] = 189, - [238] = 190, - [239] = 191, - [240] = 192, - [241] = 193, - [242] = 194, - [243] = 195, - [244] = 196, - [245] = 198, - [246] = 178, - [247] = 222, - [248] = 248, - [249] = 249, - [250] = 181, - [251] = 201, - [252] = 175, - [253] = 182, - [254] = 183, - [255] = 176, - [256] = 185, - [257] = 187, - [258] = 188, - [259] = 189, - [260] = 190, - [261] = 191, - [262] = 192, - [263] = 193, - [264] = 194, - [265] = 195, - [266] = 196, - [267] = 198, - [268] = 220, - [269] = 269, - [270] = 270, - [271] = 178, - [272] = 176, - [273] = 222, - [274] = 179, - [275] = 201, - [276] = 179, - [277] = 181, - [278] = 201, - [279] = 175, - [280] = 182, - [281] = 183, - [282] = 185, - [283] = 187, - [284] = 188, - [285] = 189, - [286] = 190, - [287] = 191, - [288] = 192, - [289] = 193, - [290] = 194, - [291] = 195, - [292] = 196, - [293] = 198, - [294] = 178, - [295] = 222, - [296] = 176, - [297] = 175, + [192] = 188, + [193] = 189, + [194] = 190, + [195] = 191, + [196] = 188, + [197] = 189, + [198] = 190, + [199] = 191, + [200] = 188, + [201] = 189, + [202] = 190, + [203] = 191, + [204] = 204, + [205] = 188, + [206] = 189, + [207] = 190, + [208] = 191, + [209] = 188, + [210] = 188, + [211] = 189, + [212] = 190, + [213] = 191, + [214] = 188, + [215] = 189, + [216] = 190, + [217] = 191, + [218] = 188, + [219] = 189, + [220] = 190, + [221] = 191, + [222] = 188, + [223] = 189, + [224] = 190, + [225] = 191, + [226] = 188, + [227] = 189, + [228] = 190, + [229] = 191, + [230] = 230, + [231] = 231, + [232] = 190, + [233] = 191, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 41, + [238] = 188, + [239] = 189, + [240] = 240, + [241] = 41, + [242] = 41, + [243] = 188, + [244] = 189, + [245] = 190, + [246] = 191, + [247] = 41, + [248] = 41, + [249] = 188, + [250] = 189, + [251] = 190, + [252] = 191, + [253] = 253, + [254] = 254, + [255] = 190, + [256] = 191, + [257] = 41, + [258] = 41, + [259] = 41, + [260] = 41, + [261] = 261, + [262] = 41, + [263] = 231, + [264] = 236, + [265] = 189, + [266] = 266, + [267] = 31, + [268] = 41, + [269] = 188, + [270] = 189, + [271] = 190, + [272] = 41, + [273] = 191, + [274] = 266, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 46, + [286] = 286, + [287] = 287, + [288] = 288, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, [298] = 298, [299] = 299, - [300] = 298, - [301] = 298, - [302] = 299, + [300] = 275, + [301] = 277, + [302] = 279, [303] = 303, - [304] = 303, - [305] = 305, - [306] = 305, - [307] = 305, - [308] = 303, - [309] = 309, - [310] = 309, - [311] = 63, - [312] = 64, - [313] = 313, - [314] = 313, - [315] = 313, - [316] = 316, - [317] = 317, - [318] = 309, - [319] = 316, - [320] = 309, - [321] = 309, - [322] = 317, - [323] = 309, + [304] = 280, + [305] = 46, + [306] = 286, + [307] = 287, + [308] = 288, + [309] = 289, + [310] = 290, + [311] = 291, + [312] = 292, + [313] = 293, + [314] = 294, + [315] = 295, + [316] = 296, + [317] = 297, + [318] = 298, + [319] = 299, + [320] = 275, + [321] = 277, + [322] = 279, + [323] = 287, [324] = 324, - [325] = 325, - [326] = 61, - [327] = 65, - [328] = 328, - [329] = 325, - [330] = 316, - [331] = 309, - [332] = 332, - [333] = 333, - [334] = 332, - [335] = 64, - [336] = 63, - [337] = 61, - [338] = 338, - [339] = 339, - [340] = 65, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 328, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 66, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 343, - [353] = 353, - [354] = 354, - [355] = 67, - [356] = 309, - [357] = 309, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 359, - [434] = 432, - [435] = 435, - [436] = 436, - [437] = 432, - [438] = 438, - [439] = 438, - [440] = 440, - [441] = 440, - [442] = 442, - [443] = 430, - [444] = 444, - [445] = 429, - [446] = 436, - [447] = 438, - [448] = 448, - [449] = 440, - [450] = 427, - [451] = 438, - [452] = 452, - [453] = 453, - [454] = 440, - [455] = 455, - [456] = 452, - [457] = 435, - [458] = 440, - [459] = 459, - [460] = 438, - [461] = 430, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 465, - [466] = 455, - [467] = 467, - [468] = 464, - [469] = 469, - [470] = 438, - [471] = 440, - [472] = 472, - [473] = 473, - [474] = 359, - [475] = 431, - [476] = 359, - [477] = 428, - [478] = 453, - [479] = 469, - [480] = 480, - [481] = 430, - [482] = 467, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 483, - [487] = 430, - [488] = 455, - [489] = 489, - [490] = 440, - [491] = 438, - [492] = 464, - [493] = 485, - [494] = 480, - [495] = 440, - [496] = 438, - [497] = 484, - [498] = 483, - [499] = 438, - [500] = 440, - [501] = 489, - [502] = 430, - [503] = 503, - [504] = 504, - [505] = 62, - [506] = 63, - [507] = 507, - [508] = 64, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 517, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 66, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 67, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 61, - [571] = 571, - [572] = 65, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 511, - [578] = 578, - [579] = 503, - [580] = 580, - [581] = 581, - [582] = 582, - [583] = 583, - [584] = 504, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 525, - [598] = 598, - [599] = 533, - [600] = 600, - [601] = 542, - [602] = 602, - [603] = 603, - [604] = 62, - [605] = 62, - [606] = 525, - [607] = 607, - [608] = 569, - [609] = 510, - [610] = 533, - [611] = 507, - [612] = 511, - [613] = 542, - [614] = 509, - [615] = 512, - [616] = 571, - [617] = 513, - [618] = 74, - [619] = 550, - [620] = 555, - [621] = 556, - [622] = 558, - [623] = 587, - [624] = 580, - [625] = 532, - [626] = 551, - [627] = 559, - [628] = 560, - [629] = 589, - [630] = 561, - [631] = 603, - [632] = 632, - [633] = 562, - [634] = 515, - [635] = 563, - [636] = 564, - [637] = 526, - [638] = 72, - [639] = 565, - [640] = 566, - [641] = 527, - [642] = 70, - [643] = 511, - [644] = 534, - [645] = 645, - [646] = 71, - [647] = 516, - [648] = 517, - [649] = 518, - [650] = 73, - [651] = 528, - [652] = 75, - [653] = 519, - [654] = 520, - [655] = 521, - [656] = 68, - [657] = 522, - [658] = 535, - [659] = 552, - [660] = 553, - [661] = 69, - [662] = 554, - [663] = 567, - [664] = 568, - [665] = 514, - [666] = 596, - [667] = 525, - [668] = 533, - [669] = 542, - [670] = 529, - [671] = 632, - [672] = 524, - [673] = 575, - [674] = 530, - [675] = 536, - [676] = 537, - [677] = 523, - [678] = 531, - [679] = 539, - [680] = 540, - [681] = 541, - [682] = 514, - [683] = 573, - [684] = 583, - [685] = 543, - [686] = 585, - [687] = 586, - [688] = 544, - [689] = 580, - [690] = 582, - [691] = 588, - [692] = 575, - [693] = 583, - [694] = 585, - [695] = 586, - [696] = 588, - [697] = 590, - [698] = 590, - [699] = 591, - [700] = 592, - [701] = 574, - [702] = 593, - [703] = 594, - [704] = 595, - [705] = 598, - [706] = 600, - [707] = 602, - [708] = 576, - [709] = 578, - [710] = 591, - [711] = 592, - [712] = 587, - [713] = 589, - [714] = 603, - [715] = 574, - [716] = 593, - [717] = 594, - [718] = 596, - [719] = 595, - [720] = 598, - [721] = 600, - [722] = 602, - [723] = 545, - [724] = 546, - [725] = 511, - [726] = 547, - [727] = 581, - [728] = 576, - [729] = 548, - [730] = 578, - [731] = 549, - [732] = 581, - [733] = 582, + [325] = 280, + [326] = 303, + [327] = 46, + [328] = 286, + [329] = 287, + [330] = 288, + [331] = 289, + [332] = 290, + [333] = 292, + [334] = 293, + [335] = 294, + [336] = 295, + [337] = 296, + [338] = 297, + [339] = 298, + [340] = 299, + [341] = 275, + [342] = 277, + [343] = 279, + [344] = 344, + [345] = 280, + [346] = 46, + [347] = 286, + [348] = 287, + [349] = 288, + [350] = 289, + [351] = 290, + [352] = 292, + [353] = 293, + [354] = 294, + [355] = 295, + [356] = 296, + [357] = 297, + [358] = 298, + [359] = 299, + [360] = 275, + [361] = 277, + [362] = 279, + [363] = 280, + [364] = 46, + [365] = 286, + [366] = 287, + [367] = 288, + [368] = 289, + [369] = 290, + [370] = 292, + [371] = 293, + [372] = 294, + [373] = 295, + [374] = 296, + [375] = 297, + [376] = 298, + [377] = 299, + [378] = 275, + [379] = 277, + [380] = 279, + [381] = 280, + [382] = 46, + [383] = 286, + [384] = 287, + [385] = 288, + [386] = 289, + [387] = 290, + [388] = 292, + [389] = 293, + [390] = 294, + [391] = 295, + [392] = 296, + [393] = 297, + [394] = 298, + [395] = 299, + [396] = 275, + [397] = 277, + [398] = 279, + [399] = 288, + [400] = 280, + [401] = 289, + [402] = 46, + [403] = 286, + [404] = 287, + [405] = 288, + [406] = 289, + [407] = 290, + [408] = 292, + [409] = 293, + [410] = 294, + [411] = 295, + [412] = 296, + [413] = 297, + [414] = 298, + [415] = 299, + [416] = 275, + [417] = 277, + [418] = 279, + [419] = 280, + [420] = 46, + [421] = 286, + [422] = 287, + [423] = 288, + [424] = 289, + [425] = 290, + [426] = 292, + [427] = 293, + [428] = 294, + [429] = 295, + [430] = 296, + [431] = 297, + [432] = 298, + [433] = 299, + [434] = 275, + [435] = 277, + [436] = 279, + [437] = 280, + [438] = 286, + [439] = 276, + [440] = 46, + [441] = 286, + [442] = 287, + [443] = 288, + [444] = 289, + [445] = 290, + [446] = 292, + [447] = 293, + [448] = 294, + [449] = 295, + [450] = 296, + [451] = 297, + [452] = 298, + [453] = 299, + [454] = 277, + [455] = 279, + [456] = 280, + [457] = 46, + [458] = 286, + [459] = 287, + [460] = 288, + [461] = 289, + [462] = 290, + [463] = 292, + [464] = 293, + [465] = 294, + [466] = 295, + [467] = 296, + [468] = 297, + [469] = 298, + [470] = 299, + [471] = 275, + [472] = 277, + [473] = 279, + [474] = 280, + [475] = 46, + [476] = 286, + [477] = 287, + [478] = 288, + [479] = 289, + [480] = 290, + [481] = 292, + [482] = 293, + [483] = 294, + [484] = 295, + [485] = 296, + [486] = 297, + [487] = 298, + [488] = 299, + [489] = 275, + [490] = 277, + [491] = 279, + [492] = 492, + [493] = 46, + [494] = 286, + [495] = 287, + [496] = 288, + [497] = 289, + [498] = 290, + [499] = 292, + [500] = 293, + [501] = 294, + [502] = 295, + [503] = 296, + [504] = 297, + [505] = 298, + [506] = 299, + [507] = 275, + [508] = 277, + [509] = 279, + [510] = 280, + [511] = 46, + [512] = 286, + [513] = 287, + [514] = 288, + [515] = 289, + [516] = 290, + [517] = 292, + [518] = 293, + [519] = 294, + [520] = 295, + [521] = 296, + [522] = 297, + [523] = 298, + [524] = 299, + [525] = 275, + [526] = 277, + [527] = 279, + [528] = 280, + [529] = 46, + [530] = 286, + [531] = 287, + [532] = 288, + [533] = 289, + [534] = 290, + [535] = 292, + [536] = 293, + [537] = 294, + [538] = 295, + [539] = 296, + [540] = 297, + [541] = 298, + [542] = 299, + [543] = 275, + [544] = 277, + [545] = 279, + [546] = 280, + [547] = 290, + [548] = 46, + [549] = 286, + [550] = 287, + [551] = 288, + [552] = 289, + [553] = 290, + [554] = 292, + [555] = 293, + [556] = 294, + [557] = 295, + [558] = 296, + [559] = 297, + [560] = 298, + [561] = 299, + [562] = 275, + [563] = 277, + [564] = 279, + [565] = 280, + [566] = 291, + [567] = 46, + [568] = 286, + [569] = 287, + [570] = 288, + [571] = 289, + [572] = 290, + [573] = 292, + [574] = 293, + [575] = 294, + [576] = 295, + [577] = 296, + [578] = 297, + [579] = 298, + [580] = 299, + [581] = 275, + [582] = 277, + [583] = 279, + [584] = 280, + [585] = 278, + [586] = 46, + [587] = 286, + [588] = 287, + [589] = 288, + [590] = 289, + [591] = 290, + [592] = 292, + [593] = 293, + [594] = 294, + [595] = 295, + [596] = 296, + [597] = 297, + [598] = 298, + [599] = 299, + [600] = 275, + [601] = 277, + [602] = 279, + [603] = 280, + [604] = 284, + [605] = 605, + [606] = 606, + [607] = 46, + [608] = 303, + [609] = 276, + [610] = 278, + [611] = 286, + [612] = 291, + [613] = 292, + [614] = 293, + [615] = 294, + [616] = 278, + [617] = 291, + [618] = 295, + [619] = 287, + [620] = 296, + [621] = 288, + [622] = 289, + [623] = 290, + [624] = 291, + [625] = 292, + [626] = 293, + [627] = 294, + [628] = 295, + [629] = 296, + [630] = 297, + [631] = 298, + [632] = 299, + [633] = 492, + [634] = 275, + [635] = 281, + [636] = 277, + [637] = 279, + [638] = 297, + [639] = 298, + [640] = 299, + [641] = 492, + [642] = 492, + [643] = 492, + [644] = 492, + [645] = 492, + [646] = 492, + [647] = 492, + [648] = 492, + [649] = 492, + [650] = 492, + [651] = 492, + [652] = 492, + [653] = 492, + [654] = 492, + [655] = 492, + [656] = 492, + [657] = 492, + [658] = 658, + [659] = 303, + [660] = 275, + [661] = 280, + [662] = 280, + [663] = 663, + [664] = 664, + [665] = 665, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 115, + [671] = 116, + [672] = 669, + [673] = 120, + [674] = 674, + [675] = 675, + [676] = 118, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 117, + [682] = 682, + [683] = 683, + [684] = 684, + [685] = 118, + [686] = 115, + [687] = 687, + [688] = 688, + [689] = 689, + [690] = 690, + [691] = 120, + [692] = 692, + [693] = 693, + [694] = 694, + [695] = 680, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 699, + [700] = 116, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 705, + [708] = 708, + [709] = 680, + [710] = 119, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 725, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, [734] = 734, - [735] = 645, + [735] = 735, [736] = 736, [737] = 737, [738] = 738, [739] = 739, - [740] = 525, - [741] = 533, - [742] = 542, + [740] = 740, + [741] = 741, + [742] = 678, [743] = 743, [744] = 744, - [745] = 745, + [745] = 712, [746] = 746, [747] = 747, [748] = 748, @@ -3200,188 +3188,188 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [752] = 752, [753] = 753, [754] = 754, - [755] = 754, - [756] = 753, - [757] = 596, - [758] = 607, - [759] = 525, + [755] = 755, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, [760] = 760, - [761] = 533, - [762] = 542, + [761] = 678, + [762] = 762, [763] = 763, - [764] = 603, - [765] = 753, + [764] = 764, + [765] = 765, [766] = 766, [767] = 767, [768] = 768, - [769] = 754, - [770] = 760, + [769] = 769, + [770] = 770, [771] = 771, - [772] = 772, - [773] = 768, + [772] = 678, + [773] = 773, [774] = 774, [775] = 775, - [776] = 753, + [776] = 776, [777] = 777, [778] = 778, [779] = 779, [780] = 780, - [781] = 580, - [782] = 582, + [781] = 781, + [782] = 782, [783] = 783, - [784] = 751, - [785] = 575, - [786] = 589, - [787] = 585, - [788] = 788, - [789] = 777, - [790] = 586, - [791] = 791, - [792] = 588, - [793] = 590, - [794] = 591, - [795] = 592, - [796] = 581, - [797] = 771, - [798] = 574, - [799] = 593, - [800] = 594, - [801] = 595, - [802] = 598, - [803] = 778, - [804] = 600, - [805] = 783, - [806] = 602, - [807] = 791, - [808] = 576, + [784] = 712, + [785] = 785, + [786] = 786, + [787] = 678, + [788] = 678, + [789] = 678, + [790] = 678, + [791] = 677, + [792] = 678, + [793] = 677, + [794] = 678, + [795] = 795, + [796] = 796, + [797] = 678, + [798] = 677, + [799] = 799, + [800] = 706, + [801] = 684, + [802] = 802, + [803] = 803, + [804] = 689, + [805] = 799, + [806] = 698, + [807] = 702, + [808] = 678, [809] = 809, - [810] = 578, - [811] = 788, - [812] = 767, - [813] = 813, - [814] = 587, - [815] = 736, - [816] = 632, - [817] = 766, - [818] = 583, - [819] = 576, - [820] = 511, - [821] = 821, - [822] = 514, - [823] = 823, - [824] = 823, - [825] = 825, - [826] = 823, - [827] = 823, - [828] = 823, - [829] = 823, - [830] = 744, - [831] = 831, - [832] = 832, + [810] = 677, + [811] = 811, + [812] = 812, + [813] = 678, + [814] = 814, + [815] = 678, + [816] = 816, + [817] = 705, + [818] = 816, + [819] = 819, + [820] = 820, + [821] = 816, + [822] = 699, + [823] = 701, + [824] = 712, + [825] = 799, + [826] = 692, + [827] = 712, + [828] = 816, + [829] = 829, + [830] = 678, + [831] = 692, + [832] = 692, [833] = 833, - [834] = 580, - [835] = 582, - [836] = 575, - [837] = 583, - [838] = 585, - [839] = 586, - [840] = 588, - [841] = 590, - [842] = 591, - [843] = 592, - [844] = 574, - [845] = 593, - [846] = 594, - [847] = 595, - [848] = 598, - [849] = 600, - [850] = 602, - [851] = 578, - [852] = 587, - [853] = 589, - [854] = 603, - [855] = 596, - [856] = 581, - [857] = 857, - [858] = 858, - [859] = 857, - [860] = 857, - [861] = 861, - [862] = 857, - [863] = 736, - [864] = 857, - [865] = 861, - [866] = 866, - [867] = 867, - [868] = 867, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 870, - [873] = 870, - [874] = 871, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 877, - [879] = 871, - [880] = 880, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 816, + [838] = 816, + [839] = 677, + [840] = 816, + [841] = 677, + [842] = 677, + [843] = 809, + [844] = 811, + [845] = 816, + [846] = 846, + [847] = 677, + [848] = 809, + [849] = 811, + [850] = 692, + [851] = 809, + [852] = 811, + [853] = 802, + [854] = 802, + [855] = 803, + [856] = 677, + [857] = 816, + [858] = 809, + [859] = 811, + [860] = 816, + [861] = 803, + [862] = 816, + [863] = 692, + [864] = 816, + [865] = 816, + [866] = 677, + [867] = 816, + [868] = 677, + [869] = 816, + [870] = 677, + [871] = 816, + [872] = 816, + [873] = 816, + [874] = 816, + [875] = 816, + [876] = 692, + [877] = 677, + [878] = 692, + [879] = 833, + [880] = 833, [881] = 881, - [882] = 882, - [883] = 881, - [884] = 882, - [885] = 881, - [886] = 882, - [887] = 882, - [888] = 882, - [889] = 881, - [890] = 882, - [891] = 881, - [892] = 881, - [893] = 893, - [894] = 893, - [895] = 895, - [896] = 893, - [897] = 893, - [898] = 893, - [899] = 893, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, + [882] = 833, + [883] = 692, + [884] = 884, + [885] = 705, + [886] = 833, + [887] = 677, + [888] = 888, + [889] = 816, + [890] = 677, + [891] = 677, + [892] = 692, + [893] = 816, + [894] = 834, + [895] = 835, + [896] = 836, + [897] = 692, + [898] = 677, + [899] = 692, + [900] = 677, + [901] = 816, + [902] = 816, + [903] = 816, + [904] = 816, + [905] = 692, + [906] = 834, + [907] = 816, + [908] = 816, + [909] = 816, + [910] = 816, [911] = 911, [912] = 912, [913] = 913, [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, + [915] = 816, + [916] = 692, + [917] = 692, + [918] = 692, + [919] = 816, + [920] = 677, + [921] = 692, + [922] = 692, + [923] = 692, + [924] = 846, + [925] = 816, + [926] = 692, + [927] = 121, [928] = 928, [929] = 929, - [930] = 930, + [930] = 115, [931] = 931, [932] = 932, [933] = 933, [934] = 934, [935] = 935, - [936] = 936, + [936] = 116, [937] = 937, [938] = 938, [939] = 939, @@ -3393,676 +3381,676 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [945] = 945, [946] = 946, [947] = 947, - [948] = 63, + [948] = 948, [949] = 949, [950] = 950, - [951] = 951, + [951] = 118, [952] = 952, - [953] = 64, + [953] = 120, [954] = 954, [955] = 955, - [956] = 61, - [957] = 65, + [956] = 956, + [957] = 957, [958] = 958, [959] = 959, [960] = 960, - [961] = 906, + [961] = 961, [962] = 962, [963] = 963, [964] = 964, - [965] = 907, - [966] = 966, - [967] = 906, - [968] = 960, + [965] = 965, + [966] = 795, + [967] = 967, + [968] = 968, [969] = 969, - [970] = 911, - [971] = 971, - [972] = 916, + [970] = 970, + [971] = 119, + [972] = 972, [973] = 973, - [974] = 923, + [974] = 974, [975] = 975, - [976] = 544, - [977] = 920, + [976] = 976, + [977] = 977, [978] = 978, - [979] = 919, + [979] = 979, [980] = 980, [981] = 981, - [982] = 916, + [982] = 982, [983] = 983, - [984] = 978, - [985] = 983, - [986] = 975, + [984] = 984, + [985] = 985, + [986] = 986, [987] = 987, - [988] = 980, + [988] = 988, [989] = 989, - [990] = 987, + [990] = 990, [991] = 991, [992] = 992, - [993] = 991, - [994] = 992, - [995] = 995, - [996] = 996, - [997] = 918, - [998] = 995, - [999] = 996, - [1000] = 564, - [1001] = 568, - [1002] = 1002, - [1003] = 981, - [1004] = 1004, - [1005] = 989, - [1006] = 1006, - [1007] = 973, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1009, + [993] = 117, + [994] = 994, + [995] = 963, + [996] = 948, + [997] = 929, + [998] = 928, + [999] = 950, + [1000] = 947, + [1001] = 934, + [1002] = 948, + [1003] = 933, + [1004] = 932, + [1005] = 121, + [1006] = 935, + [1007] = 950, + [1008] = 931, + [1009] = 121, + [1010] = 952, + [1011] = 963, + [1012] = 944, + [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 1012, + [1016] = 1016, [1017] = 1017, - [1018] = 1015, - [1019] = 1015, + [1018] = 1018, + [1019] = 1019, [1020] = 1020, - [1021] = 1011, - [1022] = 1022, - [1023] = 1015, - [1024] = 1022, - [1025] = 1010, - [1026] = 1020, - [1027] = 1008, - [1028] = 1017, - [1029] = 1015, - [1030] = 1014, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1032, - [1036] = 1034, - [1037] = 1033, - [1038] = 1032, - [1039] = 1033, - [1040] = 1034, - [1041] = 1032, - [1042] = 1034, - [1043] = 1033, + [1021] = 987, + [1022] = 988, + [1023] = 989, + [1024] = 992, + [1025] = 994, + [1026] = 991, + [1027] = 938, + [1028] = 939, + [1029] = 940, + [1030] = 941, + [1031] = 949, + [1032] = 942, + [1033] = 943, + [1034] = 946, + [1035] = 984, + [1036] = 970, + [1037] = 985, + [1038] = 954, + [1039] = 127, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, [1044] = 1044, [1045] = 1045, - [1046] = 1044, + [1046] = 1046, [1047] = 1047, - [1048] = 1047, - [1049] = 1044, - [1050] = 1047, - [1051] = 1044, - [1052] = 1047, - [1053] = 1053, - [1054] = 1054, - [1055] = 1054, - [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1058, - [1060] = 1057, - [1061] = 1061, - [1062] = 1062, - [1063] = 1062, - [1064] = 1061, - [1065] = 1057, - [1066] = 1054, - [1067] = 1061, - [1068] = 1061, - [1069] = 1058, + [1048] = 1013, + [1049] = 1014, + [1050] = 1015, + [1051] = 1016, + [1052] = 1017, + [1053] = 1018, + [1054] = 1019, + [1055] = 990, + [1056] = 1020, + [1057] = 795, + [1058] = 983, + [1059] = 945, + [1060] = 955, + [1061] = 964, + [1062] = 986, + [1063] = 957, + [1064] = 969, + [1065] = 958, + [1066] = 959, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, [1070] = 1070, - [1071] = 1058, - [1072] = 1054, - [1073] = 1062, - [1074] = 1062, - [1075] = 1057, + [1071] = 123, + [1072] = 1041, + [1073] = 126, + [1074] = 124, + [1075] = 1042, [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1082, - [1084] = 1082, - [1085] = 1082, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1082, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1082, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1111, - [1112] = 569, - [1113] = 1113, - [1114] = 1114, + [1077] = 1067, + [1078] = 1068, + [1079] = 1069, + [1080] = 1070, + [1081] = 1043, + [1082] = 1044, + [1083] = 122, + [1084] = 129, + [1085] = 975, + [1086] = 125, + [1087] = 1076, + [1088] = 948, + [1089] = 967, + [1090] = 963, + [1091] = 950, + [1092] = 960, + [1093] = 937, + [1094] = 965, + [1095] = 1045, + [1096] = 968, + [1097] = 972, + [1098] = 973, + [1099] = 974, + [1100] = 975, + [1101] = 976, + [1102] = 956, + [1103] = 977, + [1104] = 978, + [1105] = 979, + [1106] = 980, + [1107] = 961, + [1108] = 962, + [1109] = 981, + [1110] = 982, + [1111] = 1046, + [1112] = 1047, + [1113] = 128, + [1114] = 1040, [1115] = 1115, - [1116] = 1089, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 571, - [1121] = 1088, - [1122] = 1106, - [1123] = 1123, - [1124] = 1124, + [1116] = 1116, + [1117] = 948, + [1118] = 963, + [1119] = 950, + [1120] = 1069, + [1121] = 1070, + [1122] = 1067, + [1123] = 1076, + [1124] = 1068, [1125] = 1125, [1126] = 1126, - [1127] = 1102, - [1128] = 1100, - [1129] = 1093, - [1130] = 1130, + [1127] = 1127, + [1128] = 1128, + [1129] = 1129, + [1130] = 1040, [1131] = 1131, - [1132] = 1115, - [1133] = 1133, - [1134] = 547, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1137, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1144, - [1146] = 553, - [1147] = 554, - [1148] = 1137, - [1149] = 555, - [1150] = 556, - [1151] = 1151, + [1132] = 1041, + [1133] = 1042, + [1134] = 1043, + [1135] = 1044, + [1136] = 1045, + [1137] = 1046, + [1138] = 1047, + [1139] = 1013, + [1140] = 1014, + [1141] = 1015, + [1142] = 1016, + [1143] = 1017, + [1144] = 1018, + [1145] = 1019, + [1146] = 1020, + [1147] = 1147, + [1148] = 1017, + [1149] = 1018, + [1150] = 1019, + [1151] = 1044, [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 565, - [1156] = 1156, - [1157] = 1157, - [1158] = 1141, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 531, - [1163] = 1136, - [1164] = 1137, - [1165] = 1165, - [1166] = 1142, - [1167] = 569, - [1168] = 1168, - [1169] = 1161, - [1170] = 1156, - [1171] = 1171, - [1172] = 531, - [1173] = 537, - [1174] = 1174, - [1175] = 1135, - [1176] = 1176, - [1177] = 546, - [1178] = 547, - [1179] = 537, - [1180] = 553, - [1181] = 554, - [1182] = 555, - [1183] = 556, - [1184] = 565, - [1185] = 1153, - [1186] = 1186, - [1187] = 1144, - [1188] = 1144, + [1153] = 1020, + [1154] = 1045, + [1155] = 1040, + [1156] = 1041, + [1157] = 1042, + [1158] = 1043, + [1159] = 1044, + [1160] = 1045, + [1161] = 1046, + [1162] = 1047, + [1163] = 1013, + [1164] = 1014, + [1165] = 1015, + [1166] = 1016, + [1167] = 1017, + [1168] = 1018, + [1169] = 1019, + [1170] = 1020, + [1171] = 1040, + [1172] = 1041, + [1173] = 1042, + [1174] = 1043, + [1175] = 1044, + [1176] = 1045, + [1177] = 1046, + [1178] = 1047, + [1179] = 1013, + [1180] = 1014, + [1181] = 1015, + [1182] = 1016, + [1183] = 1017, + [1184] = 1018, + [1185] = 1019, + [1186] = 1020, + [1187] = 1046, + [1188] = 1188, [1189] = 1189, - [1190] = 1151, + [1190] = 1047, [1191] = 1191, [1192] = 1192, - [1193] = 1193, - [1194] = 1194, - [1195] = 546, - [1196] = 571, - [1197] = 1174, - [1198] = 1186, - [1199] = 1199, + [1193] = 948, + [1194] = 1041, + [1195] = 1195, + [1196] = 1013, + [1197] = 1041, + [1198] = 1042, + [1199] = 1014, [1200] = 1200, [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1203, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1086, - [1212] = 1201, - [1213] = 1213, - [1214] = 1214, - [1215] = 1110, - [1216] = 1126, - [1217] = 1217, - [1218] = 1218, - [1219] = 1159, - [1220] = 1220, + [1202] = 963, + [1203] = 950, + [1204] = 1040, + [1205] = 1043, + [1206] = 1041, + [1207] = 1042, + [1208] = 1043, + [1209] = 1044, + [1210] = 1045, + [1211] = 1046, + [1212] = 1047, + [1213] = 1013, + [1214] = 1014, + [1215] = 1015, + [1216] = 1016, + [1217] = 1020, + [1218] = 1017, + [1219] = 1219, + [1220] = 1076, [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1200, - [1225] = 1222, - [1226] = 1226, - [1227] = 1200, - [1228] = 1210, + [1222] = 1018, + [1223] = 1019, + [1224] = 1224, + [1225] = 1020, + [1226] = 1067, + [1227] = 1201, + [1228] = 1228, [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1217, - [1234] = 1234, - [1235] = 1214, - [1236] = 1222, + [1230] = 1068, + [1231] = 1069, + [1232] = 1070, + [1233] = 1152, + [1234] = 1192, + [1235] = 1069, + [1236] = 1236, [1237] = 1237, - [1238] = 1238, - [1239] = 1200, - [1240] = 1240, - [1241] = 1229, - [1242] = 1078, - [1243] = 1243, - [1244] = 1244, - [1245] = 1226, - [1246] = 1208, - [1247] = 1226, - [1248] = 1248, - [1249] = 1214, - [1250] = 1222, - [1251] = 1251, - [1252] = 1252, - [1253] = 1204, - [1254] = 1254, - [1255] = 1255, - [1256] = 1118, - [1257] = 1257, - [1258] = 1258, - [1259] = 1230, - [1260] = 1260, - [1261] = 1261, - [1262] = 1254, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1226, - [1267] = 1234, - [1268] = 1268, - [1269] = 1214, - [1270] = 1270, - [1271] = 1271, - [1272] = 1232, - [1273] = 1237, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1277, - [1278] = 1278, - [1279] = 1279, - [1280] = 1280, - [1281] = 1281, - [1282] = 1282, - [1283] = 1283, - [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1289, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, - [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1303, + [1238] = 1076, + [1239] = 1239, + [1240] = 1228, + [1241] = 1044, + [1242] = 1219, + [1243] = 1067, + [1244] = 1045, + [1245] = 1201, + [1246] = 1046, + [1247] = 1040, + [1248] = 1013, + [1249] = 1014, + [1250] = 1015, + [1251] = 1016, + [1252] = 1147, + [1253] = 1040, + [1254] = 1236, + [1255] = 1067, + [1256] = 1068, + [1257] = 1069, + [1258] = 1070, + [1259] = 1017, + [1260] = 1219, + [1261] = 1018, + [1262] = 1015, + [1263] = 1229, + [1264] = 1016, + [1265] = 1017, + [1266] = 1019, + [1267] = 1018, + [1268] = 1068, + [1269] = 1019, + [1270] = 1076, + [1271] = 1068, + [1272] = 1272, + [1273] = 1069, + [1274] = 1070, + [1275] = 1069, + [1276] = 1070, + [1277] = 1067, + [1278] = 1041, + [1279] = 1040, + [1280] = 1020, + [1281] = 1067, + [1282] = 1042, + [1283] = 1042, + [1284] = 1070, + [1285] = 1043, + [1286] = 1044, + [1287] = 1067, + [1288] = 1068, + [1289] = 1069, + [1290] = 1070, + [1291] = 1045, + [1292] = 1046, + [1293] = 1047, + [1294] = 1013, + [1295] = 1014, + [1296] = 1015, + [1297] = 1016, + [1298] = 1017, + [1299] = 1076, + [1300] = 1018, + [1301] = 1043, + [1302] = 1221, + [1303] = 1076, [1304] = 1304, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1292, - [1310] = 1296, - [1311] = 1311, - [1312] = 1312, - [1313] = 1313, - [1314] = 1305, - [1315] = 1315, - [1316] = 1316, - [1317] = 1306, + [1305] = 1019, + [1306] = 1219, + [1307] = 1068, + [1308] = 1040, + [1309] = 1041, + [1310] = 1042, + [1311] = 1043, + [1312] = 1044, + [1313] = 1045, + [1314] = 1046, + [1315] = 1304, + [1316] = 1047, + [1317] = 1192, [1318] = 1318, - [1319] = 1303, - [1320] = 1304, - [1321] = 1321, + [1319] = 1195, + [1320] = 1147, + [1321] = 1236, [1322] = 1322, - [1323] = 345, + [1323] = 1237, [1324] = 1324, - [1325] = 1325, - [1326] = 1326, - [1327] = 1327, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1331, - [1332] = 1281, - [1333] = 1289, - [1334] = 1292, - [1335] = 1312, - [1336] = 1297, - [1337] = 1337, - [1338] = 1285, - [1339] = 1339, - [1340] = 1337, + [1325] = 1013, + [1326] = 1014, + [1327] = 1237, + [1328] = 1015, + [1329] = 1076, + [1330] = 1272, + [1331] = 1304, + [1332] = 1016, + [1333] = 1195, + [1334] = 1020, + [1335] = 1125, + [1336] = 1076, + [1337] = 1272, + [1338] = 1047, + [1339] = 1125, + [1340] = 1340, [1341] = 1341, - [1342] = 1325, - [1343] = 1343, - [1344] = 1326, - [1345] = 1328, - [1346] = 1341, - [1347] = 1305, - [1348] = 1274, - [1349] = 1322, - [1350] = 1296, - [1351] = 1316, - [1352] = 1311, - [1353] = 1324, - [1354] = 1297, - [1355] = 1283, - [1356] = 1284, - [1357] = 1357, - [1358] = 1315, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1303, - [1363] = 1363, - [1364] = 1304, - [1365] = 1305, - [1366] = 1366, - [1367] = 1306, - [1368] = 1368, - [1369] = 1343, - [1370] = 1275, - [1371] = 1371, - [1372] = 1372, - [1373] = 1373, - [1374] = 1374, - [1375] = 1375, - [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, + [1342] = 1342, + [1343] = 1040, + [1344] = 1041, + [1345] = 1042, + [1346] = 1043, + [1347] = 1044, + [1348] = 1045, + [1349] = 1046, + [1350] = 1013, + [1351] = 1014, + [1352] = 1015, + [1353] = 1016, + [1354] = 1017, + [1355] = 1018, + [1356] = 1019, + [1357] = 1020, + [1358] = 975, + [1359] = 1224, + [1360] = 1040, + [1361] = 1041, + [1362] = 1042, + [1363] = 1043, + [1364] = 1044, + [1365] = 1045, + [1366] = 1046, + [1367] = 1047, + [1368] = 1013, + [1369] = 1014, + [1370] = 1015, + [1371] = 1016, + [1372] = 1017, + [1373] = 1018, + [1374] = 1019, + [1375] = 1020, + [1376] = 1224, + [1377] = 1040, + [1378] = 1041, + [1379] = 1042, + [1380] = 1043, + [1381] = 1044, + [1382] = 1045, + [1383] = 1046, + [1384] = 1047, + [1385] = 1013, + [1386] = 1014, + [1387] = 1015, + [1388] = 1016, + [1389] = 1017, + [1390] = 1018, + [1391] = 1019, + [1392] = 1020, + [1393] = 1341, + [1394] = 1342, [1395] = 1395, - [1396] = 1396, - [1397] = 534, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 550, - [1407] = 551, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1390, - [1416] = 1416, - [1417] = 1392, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 1426, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, + [1396] = 1395, + [1397] = 1224, + [1398] = 1040, + [1399] = 1341, + [1400] = 1041, + [1401] = 1042, + [1402] = 1043, + [1403] = 1395, + [1404] = 1044, + [1405] = 1045, + [1406] = 1046, + [1407] = 1047, + [1408] = 1013, + [1409] = 1224, + [1410] = 1014, + [1411] = 1015, + [1412] = 1016, + [1413] = 1017, + [1414] = 1018, + [1415] = 1019, + [1416] = 1020, + [1417] = 1040, + [1418] = 1041, + [1419] = 1042, + [1420] = 1043, + [1421] = 1044, + [1422] = 1045, + [1423] = 1067, + [1424] = 1068, + [1425] = 1069, + [1426] = 1070, + [1427] = 1046, + [1428] = 1047, + [1429] = 1013, + [1430] = 1014, + [1431] = 1015, + [1432] = 1076, + [1433] = 1016, + [1434] = 1067, + [1435] = 1068, + [1436] = 1069, + [1437] = 1070, + [1438] = 1017, + [1439] = 1018, + [1440] = 1076, + [1441] = 1019, + [1442] = 1067, + [1443] = 1068, + [1444] = 1069, + [1445] = 1070, + [1446] = 1020, + [1447] = 1076, + [1448] = 1067, + [1449] = 1068, + [1450] = 1069, + [1451] = 1070, + [1452] = 1224, + [1453] = 1040, [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1412, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1377, - [1467] = 1467, + [1455] = 1041, + [1456] = 1042, + [1457] = 1043, + [1458] = 1076, + [1459] = 1044, + [1460] = 1067, + [1461] = 1068, + [1462] = 1069, + [1463] = 1070, + [1464] = 1076, + [1465] = 1076, + [1466] = 1466, + [1467] = 1045, [1468] = 1468, - [1469] = 1433, - [1470] = 1436, - [1471] = 1471, - [1472] = 1472, - [1473] = 1438, - [1474] = 1431, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, + [1469] = 1469, + [1470] = 1046, + [1471] = 1047, + [1472] = 1013, + [1473] = 1014, + [1474] = 1015, + [1475] = 1016, + [1476] = 1017, + [1477] = 1018, + [1478] = 1019, + [1479] = 1020, + [1480] = 1047, + [1481] = 1041, [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 1380, - [1486] = 1486, - [1487] = 1410, - [1488] = 1414, - [1489] = 1422, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, - [1493] = 1493, - [1494] = 1444, - [1495] = 1374, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1463, - [1504] = 1405, - [1505] = 1408, - [1506] = 1409, - [1507] = 1416, - [1508] = 1462, - [1509] = 1465, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1418, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1396, - [1523] = 1523, - [1524] = 1478, - [1525] = 1372, - [1526] = 1371, - [1527] = 1510, - [1528] = 1528, - [1529] = 1376, - [1530] = 1515, - [1531] = 1516, - [1532] = 1517, - [1533] = 1533, - [1534] = 1390, - [1535] = 1480, - [1536] = 1392, - [1537] = 1537, - [1538] = 1384, - [1539] = 1386, - [1540] = 1540, - [1541] = 1395, - [1542] = 1403, - [1543] = 1543, - [1544] = 1391, - [1545] = 1428, - [1546] = 1546, - [1547] = 1432, - [1548] = 1492, - [1549] = 1549, - [1550] = 1537, - [1551] = 1521, - [1552] = 1518, - [1553] = 1519, - [1554] = 1520, - [1555] = 1439, - [1556] = 1452, - [1557] = 1459, - [1558] = 1558, - [1559] = 1270, - [1560] = 1533, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1427, - [1565] = 1434, - [1566] = 1566, - [1567] = 1437, + [1484] = 1341, + [1485] = 1485, + [1486] = 1483, + [1487] = 1040, + [1488] = 1041, + [1489] = 1483, + [1490] = 1042, + [1491] = 1485, + [1492] = 1043, + [1493] = 1044, + [1494] = 1045, + [1495] = 1483, + [1496] = 1485, + [1497] = 1046, + [1498] = 1047, + [1499] = 1013, + [1500] = 1485, + [1501] = 1485, + [1502] = 1014, + [1503] = 1015, + [1504] = 1125, + [1505] = 1016, + [1506] = 1506, + [1507] = 1485, + [1508] = 1017, + [1509] = 1076, + [1510] = 1018, + [1511] = 1019, + [1512] = 1020, + [1513] = 1485, + [1514] = 1485, + [1515] = 1040, + [1516] = 1485, + [1517] = 1485, + [1518] = 1042, + [1519] = 1485, + [1520] = 1043, + [1521] = 1044, + [1522] = 1045, + [1523] = 1046, + [1524] = 1485, + [1525] = 1047, + [1526] = 1013, + [1527] = 1014, + [1528] = 1015, + [1529] = 1485, + [1530] = 1016, + [1531] = 1017, + [1532] = 1485, + [1533] = 1018, + [1534] = 1019, + [1535] = 1485, + [1536] = 1485, + [1537] = 1020, + [1538] = 1485, + [1539] = 1485, + [1540] = 1485, + [1541] = 1067, + [1542] = 1068, + [1543] = 1069, + [1544] = 1070, + [1545] = 1483, + [1546] = 1506, + [1547] = 1483, + [1548] = 1076, + [1549] = 1017, + [1550] = 1042, + [1551] = 1551, + [1552] = 1043, + [1553] = 1045, + [1554] = 1046, + [1555] = 1019, + [1556] = 1040, + [1557] = 1018, + [1558] = 1551, + [1559] = 1041, + [1560] = 1013, + [1561] = 1015, + [1562] = 1016, + [1563] = 1044, + [1564] = 1020, + [1565] = 1014, + [1566] = 1076, + [1567] = 1047, [1568] = 1568, - [1569] = 1442, + [1569] = 1569, [1570] = 1570, - [1571] = 1499, + [1571] = 1571, [1572] = 1572, - [1573] = 1481, + [1573] = 1572, [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1496, - [1578] = 1486, - [1579] = 1426, - [1580] = 1580, - [1581] = 1390, - [1582] = 1392, - [1583] = 1500, - [1584] = 1566, - [1585] = 1501, + [1575] = 1571, + [1576] = 1572, + [1577] = 1571, + [1578] = 1578, + [1579] = 1579, + [1580] = 1579, + [1581] = 1581, + [1582] = 235, + [1583] = 1583, + [1584] = 235, + [1585] = 1585, [1586] = 1586, - [1587] = 1441, + [1587] = 1587, [1588] = 1588, - [1589] = 1450, - [1590] = 1373, - [1591] = 1497, - [1592] = 1375, - [1593] = 1378, - [1594] = 1404, - [1595] = 1493, - [1596] = 1514, - [1597] = 1456, - [1598] = 1563, - [1599] = 1580, - [1600] = 1460, - [1601] = 1413, - [1602] = 1471, - [1603] = 1472, - [1604] = 1475, - [1605] = 1502, - [1606] = 1586, - [1607] = 1419, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1588, + [1596] = 115, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1602, + [1603] = 1603, + [1604] = 1604, + [1605] = 1589, + [1606] = 1606, + [1607] = 1607, [1608] = 1608, - [1609] = 1420, - [1610] = 1484, - [1611] = 1425, - [1612] = 1449, - [1613] = 1512, - [1614] = 1467, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, [1615] = 1615, [1616] = 1616, - [1617] = 1617, + [1617] = 116, [1618] = 1618, [1619] = 1619, [1620] = 1620, @@ -4070,103 +4058,855 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1622] = 1622, [1623] = 1623, [1624] = 1624, - [1625] = 1625, + [1625] = 1589, [1626] = 1626, [1627] = 1627, [1628] = 1628, [1629] = 1629, - [1630] = 1622, - [1631] = 1240, - [1632] = 1632, - [1633] = 1619, + [1630] = 1629, + [1631] = 1629, + [1632] = 1629, + [1633] = 1629, [1634] = 1634, - [1635] = 1635, - [1636] = 1622, - [1637] = 1637, - [1638] = 1638, - [1639] = 1638, - [1640] = 1640, - [1641] = 1637, + [1635] = 1629, + [1636] = 120, + [1637] = 1629, + [1638] = 941, + [1639] = 1639, + [1640] = 1629, + [1641] = 1629, [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1646, - [1647] = 1621, - [1648] = 1637, - [1649] = 1644, - [1650] = 1617, + [1643] = 1629, + [1644] = 1629, + [1645] = 978, + [1646] = 1629, + [1647] = 1647, + [1648] = 1629, + [1649] = 1629, + [1650] = 1629, [1651] = 1651, - [1652] = 1652, - [1653] = 1653, + [1652] = 1629, + [1653] = 1629, [1654] = 1654, - [1655] = 1623, + [1655] = 1629, [1656] = 1656, - [1657] = 1651, - [1658] = 1658, - [1659] = 1659, - [1660] = 1660, + [1657] = 1657, + [1658] = 118, + [1659] = 945, + [1660] = 1629, [1661] = 1661, [1662] = 1662, - [1663] = 1644, - [1664] = 1664, - [1665] = 1665, - [1666] = 1623, - [1667] = 1667, - [1668] = 1668, - [1669] = 1652, - [1670] = 1617, - [1671] = 1619, - [1672] = 1660, - [1673] = 1645, + [1663] = 1663, + [1664] = 1603, + [1665] = 664, + [1666] = 1608, + [1667] = 1618, + [1668] = 1662, + [1669] = 1663, + [1670] = 1670, + [1671] = 1671, + [1672] = 1672, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, - [1677] = 1677, - [1678] = 1658, - [1679] = 1624, - [1680] = 1680, - [1681] = 1617, + [1675] = 665, + [1676] = 666, + [1677] = 1672, + [1678] = 1678, + [1679] = 1678, + [1680] = 1678, + [1681] = 1678, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, - [1687] = 1687, - [1688] = 1635, - [1689] = 1682, - [1690] = 1675, - [1691] = 1686, - [1692] = 1635, + [1687] = 1671, + [1688] = 1688, + [1689] = 1673, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, [1693] = 1693, - [1694] = 1694, - [1695] = 1694, - [1696] = 1682, - [1697] = 1697, - [1698] = 1635, - [1699] = 1637, - [1700] = 1637, - [1701] = 1623, - [1702] = 1682, - [1703] = 1632, - [1704] = 1619, - [1705] = 1632, - [1706] = 1624, - [1707] = 1619, - [1708] = 1644, - [1709] = 1623, - [1710] = 1632, - [1711] = 1711, - [1712] = 1677, - [1713] = 1713, - [1714] = 1622, - [1715] = 1715, - [1716] = 1682, + [1694] = 1684, + [1695] = 1684, + [1696] = 1688, + [1697] = 1690, + [1698] = 1698, + [1699] = 1692, + [1700] = 1688, + [1701] = 1684, + [1702] = 1688, + [1703] = 1690, + [1704] = 1692, + [1705] = 1690, + [1706] = 1670, + [1707] = 1674, + [1708] = 1692, + [1709] = 1709, + [1710] = 1682, + [1711] = 1683, + [1712] = 1685, + [1713] = 1686, + [1714] = 1691, + [1715] = 1693, + [1716] = 1709, [1717] = 1717, - [1718] = 1632, - [1719] = 1717, - [1720] = 1644, - [1721] = 1624, + [1718] = 1717, + [1719] = 1698, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1721, + [1729] = 1729, + [1730] = 1720, + [1731] = 1720, + [1732] = 1725, + [1733] = 1726, + [1734] = 1727, + [1735] = 1721, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 1739, + [1740] = 1740, + [1741] = 1725, + [1742] = 1739, + [1743] = 1726, + [1744] = 1723, + [1745] = 1727, + [1746] = 1721, + [1747] = 1724, + [1748] = 1736, + [1749] = 1749, + [1750] = 1740, + [1751] = 1725, + [1752] = 1726, + [1753] = 1749, + [1754] = 1727, + [1755] = 1720, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 668, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1768, + [1773] = 1773, + [1774] = 1768, + [1775] = 1775, + [1776] = 1776, + [1777] = 1777, + [1778] = 1768, + [1779] = 1779, + [1780] = 1780, + [1781] = 1768, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1768, + [1786] = 1786, + [1787] = 1787, + [1788] = 1788, + [1789] = 1786, + [1790] = 1790, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 947, + [1797] = 1797, + [1798] = 1798, + [1799] = 1799, + [1800] = 1794, + [1801] = 1801, + [1802] = 1802, + [1803] = 1767, + [1804] = 1804, + [1805] = 1794, + [1806] = 1806, + [1807] = 1807, + [1808] = 1769, + [1809] = 674, + [1810] = 1810, + [1811] = 1811, + [1812] = 1812, + [1813] = 1813, + [1814] = 1775, + [1815] = 1770, + [1816] = 1779, + [1817] = 1784, + [1818] = 1818, + [1819] = 1804, + [1820] = 674, + [1821] = 1767, + [1822] = 1795, + [1823] = 1804, + [1824] = 1793, + [1825] = 1804, + [1826] = 1794, + [1827] = 952, + [1828] = 1792, + [1829] = 1788, + [1830] = 981, + [1831] = 952, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1836, + [1837] = 962, + [1838] = 1838, + [1839] = 1839, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1844, + [1845] = 962, + [1846] = 1846, + [1847] = 1847, + [1848] = 1848, + [1849] = 1849, + [1850] = 1839, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1854, + [1855] = 987, + [1856] = 1851, + [1857] = 1857, + [1858] = 980, + [1859] = 981, + [1860] = 947, + [1861] = 988, + [1862] = 989, + [1863] = 1818, + [1864] = 987, + [1865] = 1852, + [1866] = 988, + [1867] = 992, + [1868] = 989, + [1869] = 1833, + [1870] = 1834, + [1871] = 1842, + [1872] = 992, + [1873] = 942, + [1874] = 937, + [1875] = 942, + [1876] = 980, + [1877] = 724, + [1878] = 1878, + [1879] = 724, + [1880] = 1834, + [1881] = 1818, + [1882] = 1882, + [1883] = 1883, + [1884] = 937, + [1885] = 1885, + [1886] = 1886, + [1887] = 1887, + [1888] = 1888, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1892, + [1893] = 746, + [1894] = 1894, + [1895] = 1895, + [1896] = 1894, + [1897] = 1897, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1902, + [1903] = 1889, + [1904] = 1904, + [1905] = 1905, + [1906] = 1888, + [1907] = 1797, + [1908] = 1892, + [1909] = 1890, + [1910] = 1898, + [1911] = 1890, + [1912] = 1912, + [1913] = 1913, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1892, + [1918] = 1918, + [1919] = 1894, + [1920] = 1920, + [1921] = 1912, + [1922] = 1922, + [1923] = 1923, + [1924] = 1885, + [1925] = 1918, + [1926] = 1926, + [1927] = 1922, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 1931, + [1932] = 1787, + [1933] = 1904, + [1934] = 1791, + [1935] = 1887, + [1936] = 1936, + [1937] = 1937, + [1938] = 1892, + [1939] = 1939, + [1940] = 1898, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1890, + [1947] = 1947, + [1948] = 1948, + [1949] = 1916, + [1950] = 1943, + [1951] = 1894, + [1952] = 1952, + [1953] = 1953, + [1954] = 1901, + [1955] = 1928, + [1956] = 1956, + [1957] = 1898, + [1958] = 1926, + [1959] = 1959, + [1960] = 760, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, + [1964] = 1964, + [1965] = 1965, + [1966] = 1915, + [1967] = 1930, + [1968] = 1915, + [1969] = 1969, + [1970] = 1970, + [1971] = 1969, + [1972] = 1972, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1832, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, + [1985] = 1846, + [1986] = 1986, + [1987] = 1987, + [1988] = 1972, + [1989] = 1974, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1975, + [1996] = 1996, + [1997] = 1980, + [1998] = 1984, + [1999] = 1930, + [2000] = 1915, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 1832, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 1930, + [2011] = 1987, + [2012] = 1993, + [2013] = 1846, + [2014] = 1973, + [2015] = 2015, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, + [2019] = 1930, + [2020] = 2020, + [2021] = 1986, + [2022] = 2022, + [2023] = 2023, + [2024] = 1832, + [2025] = 2025, + [2026] = 2026, + [2027] = 1930, + [2028] = 1986, + [2029] = 2015, + [2030] = 1964, + [2031] = 1987, + [2032] = 2032, + [2033] = 2023, + [2034] = 2034, + [2035] = 1915, + [2036] = 1990, + [2037] = 1991, + [2038] = 1832, + [2039] = 1983, + [2040] = 2001, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 1996, + [2047] = 2047, + [2048] = 2048, + [2049] = 2003, + [2050] = 1915, + [2051] = 1990, + [2052] = 1991, + [2053] = 2053, + [2054] = 2054, + [2055] = 1993, + [2056] = 786, + [2057] = 786, + [2058] = 2017, + [2059] = 1993, + [2060] = 2047, + [2061] = 1969, + [2062] = 698, + [2063] = 2063, + [2064] = 1973, + [2065] = 2065, + [2066] = 1996, + [2067] = 2025, + [2068] = 2068, + [2069] = 2069, + [2070] = 2063, + [2071] = 2071, + [2072] = 2071, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 2076, + [2077] = 2077, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 2074, + [2085] = 2085, + [2086] = 2075, + [2087] = 2087, + [2088] = 2088, + [2089] = 2078, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 2103, + [2104] = 2091, + [2105] = 2105, + [2106] = 2106, + [2107] = 2107, + [2108] = 2088, + [2109] = 2109, + [2110] = 2110, + [2111] = 2111, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 2115, + [2116] = 2116, + [2117] = 2117, + [2118] = 2118, + [2119] = 2119, + [2120] = 2120, + [2121] = 2121, + [2122] = 2122, + [2123] = 2123, + [2124] = 2124, + [2125] = 2125, + [2126] = 2126, + [2127] = 2127, + [2128] = 796, + [2129] = 2129, + [2130] = 2130, + [2131] = 2111, + [2132] = 2132, + [2133] = 2133, + [2134] = 2134, + [2135] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2138, + [2139] = 2139, + [2140] = 2140, + [2141] = 814, + [2142] = 829, + [2143] = 2143, + [2144] = 2126, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2098, + [2151] = 2151, + [2152] = 2152, + [2153] = 964, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, + [2160] = 819, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2152, + [2171] = 2171, + [2172] = 2172, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, + [2176] = 2077, + [2177] = 2107, + [2178] = 2178, + [2179] = 2106, + [2180] = 2132, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2186, + [2187] = 2073, + [2188] = 2188, + [2189] = 2189, + [2190] = 984, + [2191] = 985, + [2192] = 2192, + [2193] = 820, + [2194] = 2194, + [2195] = 2195, + [2196] = 2196, + [2197] = 812, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2202, + [2203] = 2116, + [2204] = 1920, + [2205] = 2205, + [2206] = 2118, + [2207] = 814, + [2208] = 812, + [2209] = 2209, + [2210] = 2161, + [2211] = 820, + [2212] = 2162, + [2213] = 2213, + [2214] = 2116, + [2215] = 2120, + [2216] = 2216, + [2217] = 2140, + [2218] = 2218, + [2219] = 2167, + [2220] = 2182, + [2221] = 2149, + [2222] = 2186, + [2223] = 2216, + [2224] = 2224, + [2225] = 2118, + [2226] = 2159, + [2227] = 2090, + [2228] = 2148, + [2229] = 2076, + [2230] = 2230, + [2231] = 2100, + [2232] = 2196, + [2233] = 2123, + [2234] = 2173, + [2235] = 2133, + [2236] = 2134, + [2237] = 2137, + [2238] = 2238, + [2239] = 2239, + [2240] = 2157, + [2241] = 2158, + [2242] = 2097, + [2243] = 2099, + [2244] = 2155, + [2245] = 2245, + [2246] = 2246, + [2247] = 2247, + [2248] = 2248, + [2249] = 2249, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2254, + [2255] = 2096, + [2256] = 2138, + [2257] = 2136, + [2258] = 2258, + [2259] = 2112, + [2260] = 2260, + [2261] = 2261, + [2262] = 2262, + [2263] = 2188, + [2264] = 2194, + [2265] = 2224, + [2266] = 2171, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2116, + [2271] = 2271, + [2272] = 2245, + [2273] = 2192, + [2274] = 2268, + [2275] = 2218, + [2276] = 2276, + [2277] = 2276, + [2278] = 2246, + [2279] = 2247, + [2280] = 2280, + [2281] = 2281, + [2282] = 2115, + [2283] = 2213, + [2284] = 2248, + [2285] = 2280, + [2286] = 2249, + [2287] = 2287, + [2288] = 2154, + [2289] = 2163, + [2290] = 2290, + [2291] = 2260, + [2292] = 2292, + [2293] = 2254, + [2294] = 2250, + [2295] = 2251, + [2296] = 2252, + [2297] = 2261, + [2298] = 2262, + [2299] = 2113, + [2300] = 2114, + [2301] = 2292, + [2302] = 2281, + [2303] = 2303, + [2304] = 2304, + [2305] = 2253, + [2306] = 2121, + [2307] = 2307, + [2308] = 2118, + [2309] = 2303, + [2310] = 2145, + [2311] = 2146, + [2312] = 2120, + [2313] = 2175, + [2314] = 2314, + [2315] = 2230, + [2316] = 2316, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2317, + [2321] = 2316, + [2322] = 2318, + [2323] = 2318, + [2324] = 2319, + [2325] = 2317, + [2326] = 2326, + [2327] = 2326, + [2328] = 2328, + [2329] = 2329, + [2330] = 2318, + [2331] = 2331, + [2332] = 2332, + [2333] = 2317, + [2334] = 2334, + [2335] = 2317, + [2336] = 2316, + [2337] = 2316, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 2341, + [2342] = 2342, + [2343] = 2318, + [2344] = 2344, + [2345] = 2345, + [2346] = 2317, + [2347] = 2316, + [2348] = 2340, + [2349] = 2319, + [2350] = 2326, + [2351] = 2317, + [2352] = 2316, + [2353] = 2353, + [2354] = 2317, + [2355] = 2319, + [2356] = 2326, + [2357] = 2331, + [2358] = 2316, + [2359] = 2359, + [2360] = 2360, + [2361] = 2361, + [2362] = 2318, + [2363] = 2363, + [2364] = 2332, + [2365] = 2317, + [2366] = 2316, + [2367] = 2367, + [2368] = 2319, + [2369] = 2326, + [2370] = 2370, + [2371] = 2371, + [2372] = 2372, + [2373] = 2373, + [2374] = 2367, + [2375] = 2375, + [2376] = 2331, + [2377] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2319, + [2381] = 2318, + [2382] = 2332, + [2383] = 2317, + [2384] = 2316, + [2385] = 2319, + [2386] = 2326, + [2387] = 2319, + [2388] = 2345, + [2389] = 2389, + [2390] = 2326, + [2391] = 2318, + [2392] = 2371, + [2393] = 2318, + [2394] = 2394, + [2395] = 2318, + [2396] = 2378, + [2397] = 2326, + [2398] = 2317, + [2399] = 2399, + [2400] = 2400, + [2401] = 2326, + [2402] = 2402, + [2403] = 2403, + [2404] = 2379, + [2405] = 2375, + [2406] = 2345, + [2407] = 2379, + [2408] = 1897, + [2409] = 2317, + [2410] = 2338, + [2411] = 2411, + [2412] = 2318, + [2413] = 2413, + [2414] = 2317, + [2415] = 2340, + [2416] = 2317, + [2417] = 2403, + [2418] = 2340, + [2419] = 2316, + [2420] = 2319, + [2421] = 2326, + [2422] = 2316, + [2423] = 2373, + [2424] = 2319, + [2425] = 2338, + [2426] = 2426, + [2427] = 2427, + [2428] = 2318, + [2429] = 2319, + [2430] = 2317, + [2431] = 2316, + [2432] = 2319, + [2433] = 2326, + [2434] = 2326, + [2435] = 2326, + [2436] = 2436, + [2437] = 2437, + [2438] = 2318, + [2439] = 2439, + [2440] = 2440, + [2441] = 2317, + [2442] = 2316, + [2443] = 2319, + [2444] = 2326, + [2445] = 2345, + [2446] = 2344, + [2447] = 2371, + [2448] = 2448, + [2449] = 2449, + [2450] = 2440, + [2451] = 2451, + [2452] = 2318, + [2453] = 2427, + [2454] = 2317, + [2455] = 2316, + [2456] = 2319, + [2457] = 2326, + [2458] = 2373, + [2459] = 2318, + [2460] = 2318, + [2461] = 2318, + [2462] = 2342, + [2463] = 2317, + [2464] = 2316, + [2465] = 2375, + [2466] = 2332, + [2467] = 2378, + [2468] = 2331, + [2469] = 2318, + [2470] = 2318, + [2471] = 2317, + [2472] = 2344, + [2473] = 2319, }; static TSCharacterRange extras_character_set_1[] = { @@ -4193,7 +4933,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 226, '"', 159, - '#', 3, + '#', 4, '$', 273, '%', 214, '&', 201, @@ -4243,41 +4983,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(255); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(127); - if (lookahead == '\\') ADVANCE(81); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); - END_STATE(); - case 4: ADVANCE_MAP( - '!', 225, + '!', 226, '"', 159, '#', 75, + '%', 214, + '&', 201, '\'', 160, '(', 134, - '*', 128, - '+', 207, + ')', 136, + '*', 129, + '+', 208, ',', 132, - '-', 209, - '.', 27, - '/', 211, + '-', 210, + '.', 156, + '/', 212, '0', 258, + ':', 137, ';', 135, - '<', 145, + '<', 148, + '=', 140, + '>', 151, + '?', 28, '@', 277, '[', 142, '\\', 82, + ']', 143, + '^', 204, '`', 251, - 's', 271, '{', 131, + '|', 205, '}', 133, '~', 227, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); + if (lookahead > '#') ADVANCE(275); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(127); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); END_STATE(); case 5: ADVANCE_MAP( @@ -4286,19 +5032,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 75, '\'', 160, '(', 134, + '*', 128, '+', 207, + ',', 132, '-', 209, - '.', 156, + '.', 27, '/', 211, '0', 258, - ':', 137, + ';', 135, '<', 145, - '>', 150, '@', 277, '[', 142, '\\', 82, '`', 251, + 's', 271, '{', 131, + '}', 133, '~', 227, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); @@ -4310,40 +5059,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 6: ADVANCE_MAP( - '!', 73, + '!', 225, '"', 159, '#', 75, - '%', 214, - '&', 201, '\'', 160, '(', 134, - ')', 136, - '*', 129, - '+', 208, - ',', 132, - '-', 210, + '+', 207, + '-', 209, '.', 156, - '/', 212, + '/', 211, '0', 258, ':', 137, - ';', 135, - '<', 148, - '=', 140, - '>', 151, - '?', 28, + '<', 145, + '>', 150, '@', 277, '[', 142, '\\', 82, - ']', 143, - '^', 204, '`', 251, '{', 131, - '|', 205, - '}', 133, + '~', 227, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 7: @@ -5019,7 +5759,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 226, '"', 159, - '#', 3, + '#', 4, '$', 273, '%', 214, '&', 201, @@ -5099,7 +5839,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 225, '"', 159, - '#', 3, + '#', 4, '\'', 160, '(', 134, ')', 136, @@ -6574,1771 +7314,2734 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [2] = {.lex_state = 4, .external_lex_state = 2}, - [3] = {.lex_state = 4, .external_lex_state = 2}, - [4] = {.lex_state = 4, .external_lex_state = 2}, - [5] = {.lex_state = 4, .external_lex_state = 2}, - [6] = {.lex_state = 4, .external_lex_state = 2}, - [7] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [8] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3] = {.lex_state = 5, .external_lex_state = 2}, + [4] = {.lex_state = 5, .external_lex_state = 2}, + [5] = {.lex_state = 5, .external_lex_state = 2}, + [6] = {.lex_state = 5, .external_lex_state = 2}, + [7] = {.lex_state = 5, .external_lex_state = 2}, + [8] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, [9] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [10] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [11] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [12] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, + [11] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [12] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [13] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [14] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [15] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [16] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [17] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [18] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [19] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, + [14] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [15] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [16] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [17] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [18] = {.lex_state = 3, .external_lex_state = 5, .reserved_word_set_id = 1}, + [19] = {.lex_state = 3, .external_lex_state = 6, .reserved_word_set_id = 1}, [20] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [21] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [22] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [23] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [24] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [25] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [26] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [27] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [28] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [29] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [30] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [31] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [32] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [33] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [34] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [35] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [36] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [37] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [38] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [39] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [40] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [41] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [42] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [43] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [44] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [45] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [46] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [47] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [48] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [49] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [50] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [51] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [52] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [53] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [54] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [55] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [56] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 3}, - [57] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 3}, - [58] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 3}, - [59] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 3}, - [60] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 3}, - [61] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [62] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [63] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [64] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [65] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [66] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [67] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [68] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [69] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [70] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [71] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [72] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [73] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [74] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, - [75] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 4}, + [23] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [24] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [25] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [26] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [27] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [28] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [29] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [30] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [31] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [32] = {.lex_state = 3, .external_lex_state = 5, .reserved_word_set_id = 4}, + [33] = {.lex_state = 3, .external_lex_state = 5, .reserved_word_set_id = 4}, + [34] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [35] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [36] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [37] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [38] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [39] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [40] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [41] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [42] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [43] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [44] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [45] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [46] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [47] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [48] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [49] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [50] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [51] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [52] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [53] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [54] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [55] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [56] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [57] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [58] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [59] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [60] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [61] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [62] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [63] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [64] = {.lex_state = 3, .external_lex_state = 5, .reserved_word_set_id = 1}, + [65] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [66] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [67] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [68] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [69] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [70] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [71] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [72] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [73] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [74] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [75] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, [76] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [77] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [77] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, [78] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, [79] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, [80] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, [81] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [82] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [83] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, - [84] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, - [85] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, - [86] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, - [87] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, - [88] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 5}, - [89] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [90] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [91] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [92] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [93] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [94] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [95] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [96] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [97] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [98] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [99] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [100] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [101] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [102] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [103] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [104] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [105] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [106] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [107] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [108] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [109] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 3}, - [110] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [111] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [112] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [113] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [114] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [115] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [116] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [117] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [118] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [119] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [120] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [121] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [122] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [123] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [124] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [125] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [126] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [127] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [128] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [129] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [130] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [131] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 3}, - [132] = {.lex_state = 6, .external_lex_state = 4}, - [133] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [134] = {.lex_state = 6, .external_lex_state = 4}, - [135] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [136] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 3}, + [82] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [83] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [84] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [85] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [86] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [87] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [88] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [89] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [90] = {.lex_state = 3, .external_lex_state = 5, .reserved_word_set_id = 4}, + [91] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [92] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [93] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [94] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [95] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [96] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [97] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [98] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [99] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [100] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [101] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [102] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [103] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [104] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [105] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [106] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 4}, + [107] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [108] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [109] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [110] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [111] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [112] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [113] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 4}, + [114] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [115] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [116] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [117] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [118] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [119] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [120] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [121] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [122] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [123] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [124] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [125] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [126] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [127] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [128] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [129] = {.lex_state = 124, .external_lex_state = 5, .reserved_word_set_id = 5}, + [130] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [131] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [132] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [133] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [134] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [135] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [136] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [137] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [138] = {.lex_state = 6, .external_lex_state = 4}, - [139] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [140] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [141] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [142] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [143] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 3}, - [144] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [145] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [146] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [147] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [148] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [149] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [150] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [138] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [139] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [140] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [141] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [142] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [143] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [144] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [145] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [146] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [147] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [148] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [149] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [150] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [151] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [152] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [153] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [154] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [155] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [156] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [157] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [158] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [159] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [160] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [161] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [162] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [152] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [153] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [154] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [155] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [156] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [157] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [158] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [159] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [160] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [161] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [162] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [163] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [164] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [164] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [165] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [166] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [166] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [167] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [168] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [170] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [171] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [172] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [173] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [174] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [175] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [176] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [168] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 6}, + [169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [170] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [171] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [172] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [173] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [174] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [175] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [176] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, [177] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [178] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [179] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [180] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [181] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [182] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [183] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [184] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [185] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [186] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [187] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [188] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [189] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [190] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [192] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [196] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [202] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [203] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [204] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [205] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [206] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [207] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [208] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [209] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [210] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [211] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [212] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [213] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [214] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [215] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [216] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [217] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [178] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [179] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [180] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [181] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [182] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [184] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [185] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [186] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [187] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [188] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [189] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [190] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [192] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [196] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [202] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [203] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [204] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [205] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [206] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [207] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [208] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [209] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [210] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [211] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [212] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [213] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [214] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [215] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [216] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [217] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [218] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [219] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [220] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [222] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [220] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [222] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [223] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [224] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [225] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [225] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [226] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [227] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [228] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [229] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [230] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [231] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [232] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [233] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [234] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [235] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [236] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [237] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [238] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [240] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [241] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [242] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [243] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [244] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [245] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [246] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [247] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [248] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [249] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [251] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [253] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [254] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [255] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [256] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [257] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [258] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [259] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [260] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [262] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [263] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [264] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [265] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [266] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [267] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [227] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [228] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [229] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [230] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [232] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [233] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [234] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 3, .external_lex_state = 3}, + [236] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [237] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [238] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [240] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [241] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [242] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [243] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [244] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [245] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [246] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [247] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [248] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [249] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [251] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [253] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [254] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [255] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [256] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [257] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [258] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [259] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [260] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [262] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [263] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [264] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [265] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [266] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [267] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [268] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, [269] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [270] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [272] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [274] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [275] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [276] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [277] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [278] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [279] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [280] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [281] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [282] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [283] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [285] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [287] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [288] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [290] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [291] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [292] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [293] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [294] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [295] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [296] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [297] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, - [298] = {.lex_state = 6, .external_lex_state = 4}, - [299] = {.lex_state = 6, .external_lex_state = 4}, - [300] = {.lex_state = 6, .external_lex_state = 4}, - [301] = {.lex_state = 6, .external_lex_state = 4}, - [302] = {.lex_state = 6, .external_lex_state = 4}, - [303] = {.lex_state = 6, .external_lex_state = 4}, - [304] = {.lex_state = 6, .external_lex_state = 4}, - [305] = {.lex_state = 6, .external_lex_state = 4}, - [306] = {.lex_state = 6, .external_lex_state = 4}, - [307] = {.lex_state = 6, .external_lex_state = 4}, - [308] = {.lex_state = 6, .external_lex_state = 4}, - [309] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [310] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [311] = {.lex_state = 125, .external_lex_state = 5}, - [312] = {.lex_state = 125, .external_lex_state = 5}, - [313] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [314] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [315] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [316] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [317] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [318] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [319] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [320] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [321] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [322] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [323] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [324] = {.lex_state = 125, .external_lex_state = 2}, - [325] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [326] = {.lex_state = 125, .external_lex_state = 2}, - [327] = {.lex_state = 125, .external_lex_state = 2}, - [328] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 1}, - [329] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [330] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 1}, - [331] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [332] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [333] = {.lex_state = 125, .external_lex_state = 2}, - [334] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 3}, - [335] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [336] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [337] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [338] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [339] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [340] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [341] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [342] = {.lex_state = 125, .external_lex_state = 2}, - [343] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [344] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 1}, - [345] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [346] = {.lex_state = 125, .external_lex_state = 2}, - [347] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [348] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [349] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [350] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [351] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [352] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [353] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [354] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [355] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [356] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 3}, - [357] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 1}, - [358] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [359] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 4}, - [360] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [361] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [362] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [363] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [364] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [365] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [366] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [367] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [368] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [369] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [370] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [371] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [372] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [373] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [374] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [375] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [376] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [377] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [378] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [379] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [380] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [381] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [382] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [383] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [384] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [385] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [386] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [387] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [388] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [389] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [390] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [391] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [392] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [393] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [394] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [395] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [396] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [397] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [398] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [399] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [400] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [401] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [402] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [403] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [404] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [405] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [406] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [407] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [408] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [409] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [410] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 1}, - [411] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [412] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [413] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [414] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [415] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [416] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [417] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [418] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [419] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [420] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [421] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [422] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [423] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [424] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [425] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, - [426] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [427] = {.lex_state = 6, .external_lex_state = 3}, - [428] = {.lex_state = 6, .external_lex_state = 3}, - [429] = {.lex_state = 6, .external_lex_state = 3}, - [430] = {.lex_state = 6, .external_lex_state = 3}, - [431] = {.lex_state = 6, .external_lex_state = 3}, - [432] = {.lex_state = 6, .external_lex_state = 4}, - [433] = {.lex_state = 6, .external_lex_state = 3}, - [434] = {.lex_state = 6, .external_lex_state = 4}, - [435] = {.lex_state = 6, .external_lex_state = 3}, - [436] = {.lex_state = 6, .external_lex_state = 3}, - [437] = {.lex_state = 6, .external_lex_state = 4}, - [438] = {.lex_state = 6, .external_lex_state = 3}, - [439] = {.lex_state = 6, .external_lex_state = 3}, - [440] = {.lex_state = 6, .external_lex_state = 3}, - [441] = {.lex_state = 6, .external_lex_state = 3}, - [442] = {.lex_state = 6, .external_lex_state = 3, .reserved_word_set_id = 1}, - [443] = {.lex_state = 6, .external_lex_state = 3}, + [271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [272] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [274] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [275] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [276] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [277] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [278] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [279] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [280] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [281] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [282] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [283] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [285] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [287] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [288] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [290] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [291] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [292] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [293] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [294] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [295] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [296] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [297] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [298] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [299] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [300] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [301] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [302] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [303] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [304] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [305] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [306] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [307] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [308] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [309] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [310] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [311] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [312] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [313] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [314] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [315] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [316] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [317] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [318] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [319] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [320] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [321] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [322] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [324] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [325] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [326] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [327] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [328] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [329] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [330] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [331] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [332] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [333] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [334] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [335] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [336] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [337] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [338] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [339] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [340] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [341] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [342] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [343] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [344] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [345] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [346] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [347] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [348] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [349] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [350] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [351] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [352] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [353] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [354] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [355] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [356] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [357] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [358] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [359] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [360] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [361] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [362] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [363] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [364] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [365] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [366] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [367] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [368] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [369] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [370] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [371] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [372] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [373] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [374] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [375] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [376] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [377] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [378] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [379] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [380] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [381] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [382] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [383] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [384] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [385] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [386] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [387] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [388] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [389] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [390] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [391] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [392] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [393] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [394] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [395] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [396] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [397] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [398] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [399] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [400] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [401] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [402] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [403] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [404] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [405] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [406] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [407] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [408] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [409] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [410] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [411] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [412] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [413] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [414] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [415] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [416] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [417] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [418] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [419] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [420] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [421] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [422] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [423] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [424] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [425] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [426] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [427] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [428] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [429] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [430] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [431] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [432] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [433] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [434] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [435] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [436] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [437] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [438] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [439] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [440] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [441] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [442] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [443] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [444] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [445] = {.lex_state = 6, .external_lex_state = 4}, - [446] = {.lex_state = 6, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 4}, + [445] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [446] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [447] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [448] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [449] = {.lex_state = 6, .external_lex_state = 4}, - [450] = {.lex_state = 6, .external_lex_state = 4}, - [451] = {.lex_state = 6, .external_lex_state = 4}, - [452] = {.lex_state = 6, .external_lex_state = 4}, - [453] = {.lex_state = 6, .external_lex_state = 4}, - [454] = {.lex_state = 6, .external_lex_state = 4}, - [455] = {.lex_state = 6, .external_lex_state = 3}, - [456] = {.lex_state = 6, .external_lex_state = 4}, - [457] = {.lex_state = 6, .external_lex_state = 4}, - [458] = {.lex_state = 6, .external_lex_state = 4}, - [459] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [460] = {.lex_state = 6, .external_lex_state = 4}, - [461] = {.lex_state = 6, .external_lex_state = 4}, - [462] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [463] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [464] = {.lex_state = 6, .external_lex_state = 3}, - [465] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [466] = {.lex_state = 6, .external_lex_state = 3}, - [467] = {.lex_state = 6, .external_lex_state = 3}, - [468] = {.lex_state = 6, .external_lex_state = 3}, - [469] = {.lex_state = 6, .external_lex_state = 3}, - [470] = {.lex_state = 6, .external_lex_state = 4}, - [471] = {.lex_state = 6, .external_lex_state = 4}, - [472] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [473] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [474] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 2}, - [475] = {.lex_state = 6, .external_lex_state = 4}, - [476] = {.lex_state = 6, .external_lex_state = 4}, - [477] = {.lex_state = 6, .external_lex_state = 4}, - [478] = {.lex_state = 6, .external_lex_state = 4}, - [479] = {.lex_state = 6, .external_lex_state = 3}, - [480] = {.lex_state = 6, .external_lex_state = 3}, - [481] = {.lex_state = 6, .external_lex_state = 4}, - [482] = {.lex_state = 6, .external_lex_state = 3}, - [483] = {.lex_state = 6, .external_lex_state = 3}, - [484] = {.lex_state = 6, .external_lex_state = 3}, - [485] = {.lex_state = 6, .external_lex_state = 3}, - [486] = {.lex_state = 6, .external_lex_state = 3}, - [487] = {.lex_state = 6, .external_lex_state = 4}, - [488] = {.lex_state = 6, .external_lex_state = 3}, - [489] = {.lex_state = 6, .external_lex_state = 3}, - [490] = {.lex_state = 6, .external_lex_state = 3}, - [491] = {.lex_state = 6, .external_lex_state = 3}, - [492] = {.lex_state = 6, .external_lex_state = 3}, - [493] = {.lex_state = 6, .external_lex_state = 3}, - [494] = {.lex_state = 6, .external_lex_state = 3}, - [495] = {.lex_state = 6, .external_lex_state = 3}, - [496] = {.lex_state = 6, .external_lex_state = 3}, - [497] = {.lex_state = 6, .external_lex_state = 3}, - [498] = {.lex_state = 6, .external_lex_state = 3}, - [499] = {.lex_state = 6, .external_lex_state = 3}, - [500] = {.lex_state = 6, .external_lex_state = 3}, - [501] = {.lex_state = 6, .external_lex_state = 3}, - [502] = {.lex_state = 6, .external_lex_state = 3}, - [503] = {.lex_state = 124, .external_lex_state = 3}, - [504] = {.lex_state = 124, .external_lex_state = 3}, - [505] = {.lex_state = 124, .external_lex_state = 4}, - [506] = {.lex_state = 124, .external_lex_state = 4}, - [507] = {.lex_state = 124, .external_lex_state = 3}, - [508] = {.lex_state = 124, .external_lex_state = 4}, - [509] = {.lex_state = 124, .external_lex_state = 3}, - [510] = {.lex_state = 124, .external_lex_state = 3}, - [511] = {.lex_state = 124, .external_lex_state = 3}, - [512] = {.lex_state = 124, .external_lex_state = 3}, - [513] = {.lex_state = 124, .external_lex_state = 3}, - [514] = {.lex_state = 7, .external_lex_state = 3}, - [515] = {.lex_state = 124, .external_lex_state = 3}, - [516] = {.lex_state = 124, .external_lex_state = 3}, - [517] = {.lex_state = 124, .external_lex_state = 3}, - [518] = {.lex_state = 124, .external_lex_state = 3}, - [519] = {.lex_state = 124, .external_lex_state = 3}, - [520] = {.lex_state = 124, .external_lex_state = 3}, - [521] = {.lex_state = 124, .external_lex_state = 3}, - [522] = {.lex_state = 124, .external_lex_state = 3}, - [523] = {.lex_state = 124, .external_lex_state = 3}, - [524] = {.lex_state = 124, .external_lex_state = 3}, - [525] = {.lex_state = 124, .external_lex_state = 3}, - [526] = {.lex_state = 124, .external_lex_state = 3}, - [527] = {.lex_state = 124, .external_lex_state = 3}, - [528] = {.lex_state = 124, .external_lex_state = 3}, - [529] = {.lex_state = 124, .external_lex_state = 3}, - [530] = {.lex_state = 124, .external_lex_state = 3}, - [531] = {.lex_state = 124, .external_lex_state = 3}, - [532] = {.lex_state = 124, .external_lex_state = 3}, - [533] = {.lex_state = 124, .external_lex_state = 3}, - [534] = {.lex_state = 124, .external_lex_state = 3}, - [535] = {.lex_state = 124, .external_lex_state = 3}, - [536] = {.lex_state = 124, .external_lex_state = 3}, - [537] = {.lex_state = 124, .external_lex_state = 3}, - [538] = {.lex_state = 124, .external_lex_state = 3}, - [539] = {.lex_state = 124, .external_lex_state = 3}, - [540] = {.lex_state = 124, .external_lex_state = 3}, - [541] = {.lex_state = 124, .external_lex_state = 3}, - [542] = {.lex_state = 124, .external_lex_state = 3}, - [543] = {.lex_state = 124, .external_lex_state = 3}, - [544] = {.lex_state = 124, .external_lex_state = 3}, - [545] = {.lex_state = 124, .external_lex_state = 3}, - [546] = {.lex_state = 124, .external_lex_state = 3}, - [547] = {.lex_state = 124, .external_lex_state = 3}, - [548] = {.lex_state = 124, .external_lex_state = 3}, - [549] = {.lex_state = 124, .external_lex_state = 3}, - [550] = {.lex_state = 124, .external_lex_state = 3}, - [551] = {.lex_state = 124, .external_lex_state = 3}, - [552] = {.lex_state = 124, .external_lex_state = 3}, - [553] = {.lex_state = 124, .external_lex_state = 3}, - [554] = {.lex_state = 124, .external_lex_state = 3}, - [555] = {.lex_state = 124, .external_lex_state = 3}, - [556] = {.lex_state = 124, .external_lex_state = 3}, - [557] = {.lex_state = 124, .external_lex_state = 3}, - [558] = {.lex_state = 124, .external_lex_state = 3}, - [559] = {.lex_state = 124, .external_lex_state = 3}, - [560] = {.lex_state = 124, .external_lex_state = 3}, - [561] = {.lex_state = 124, .external_lex_state = 3}, - [562] = {.lex_state = 124, .external_lex_state = 3}, - [563] = {.lex_state = 124, .external_lex_state = 3}, - [564] = {.lex_state = 124, .external_lex_state = 3}, - [565] = {.lex_state = 124, .external_lex_state = 3}, - [566] = {.lex_state = 124, .external_lex_state = 3}, - [567] = {.lex_state = 124, .external_lex_state = 3}, - [568] = {.lex_state = 124, .external_lex_state = 3}, - [569] = {.lex_state = 124, .external_lex_state = 3}, - [570] = {.lex_state = 124, .external_lex_state = 3}, - [571] = {.lex_state = 124, .external_lex_state = 3}, - [572] = {.lex_state = 124, .external_lex_state = 3}, - [573] = {.lex_state = 124, .external_lex_state = 3}, - [574] = {.lex_state = 124, .external_lex_state = 3}, - [575] = {.lex_state = 124, .external_lex_state = 3}, - [576] = {.lex_state = 124, .external_lex_state = 3}, - [577] = {.lex_state = 124, .external_lex_state = 3}, - [578] = {.lex_state = 124, .external_lex_state = 3}, - [579] = {.lex_state = 124, .external_lex_state = 4}, - [580] = {.lex_state = 124, .external_lex_state = 3}, - [581] = {.lex_state = 124, .external_lex_state = 3}, - [582] = {.lex_state = 124, .external_lex_state = 3}, - [583] = {.lex_state = 124, .external_lex_state = 3}, - [584] = {.lex_state = 124, .external_lex_state = 4}, - [585] = {.lex_state = 124, .external_lex_state = 3}, - [586] = {.lex_state = 124, .external_lex_state = 3}, - [587] = {.lex_state = 124, .external_lex_state = 3}, - [588] = {.lex_state = 124, .external_lex_state = 3}, - [589] = {.lex_state = 124, .external_lex_state = 3}, - [590] = {.lex_state = 124, .external_lex_state = 3}, - [591] = {.lex_state = 124, .external_lex_state = 3}, - [592] = {.lex_state = 124, .external_lex_state = 3}, - [593] = {.lex_state = 124, .external_lex_state = 3}, - [594] = {.lex_state = 124, .external_lex_state = 3}, - [595] = {.lex_state = 124, .external_lex_state = 3}, - [596] = {.lex_state = 124, .external_lex_state = 3}, - [597] = {.lex_state = 124, .external_lex_state = 3}, - [598] = {.lex_state = 124, .external_lex_state = 3}, - [599] = {.lex_state = 124, .external_lex_state = 3}, - [600] = {.lex_state = 124, .external_lex_state = 3}, - [601] = {.lex_state = 124, .external_lex_state = 3}, - [602] = {.lex_state = 124, .external_lex_state = 3}, - [603] = {.lex_state = 124, .external_lex_state = 3}, - [604] = {.lex_state = 124, .external_lex_state = 4}, - [605] = {.lex_state = 124, .external_lex_state = 4}, - [606] = {.lex_state = 124, .external_lex_state = 4}, - [607] = {.lex_state = 124, .external_lex_state = 3}, - [608] = {.lex_state = 124, .external_lex_state = 4}, - [609] = {.lex_state = 124, .external_lex_state = 4}, - [610] = {.lex_state = 124, .external_lex_state = 4}, - [611] = {.lex_state = 124, .external_lex_state = 4}, - [612] = {.lex_state = 124, .external_lex_state = 4}, - [613] = {.lex_state = 124, .external_lex_state = 4}, - [614] = {.lex_state = 124, .external_lex_state = 4}, - [615] = {.lex_state = 124, .external_lex_state = 4}, - [616] = {.lex_state = 124, .external_lex_state = 4}, - [617] = {.lex_state = 124, .external_lex_state = 4}, - [618] = {.lex_state = 124, .external_lex_state = 4}, - [619] = {.lex_state = 124, .external_lex_state = 4}, - [620] = {.lex_state = 124, .external_lex_state = 4}, - [621] = {.lex_state = 124, .external_lex_state = 4}, - [622] = {.lex_state = 124, .external_lex_state = 4}, - [623] = {.lex_state = 124, .external_lex_state = 4}, - [624] = {.lex_state = 124, .external_lex_state = 4}, - [625] = {.lex_state = 124, .external_lex_state = 4}, - [626] = {.lex_state = 124, .external_lex_state = 4}, - [627] = {.lex_state = 124, .external_lex_state = 4}, - [628] = {.lex_state = 124, .external_lex_state = 4}, - [629] = {.lex_state = 124, .external_lex_state = 4}, - [630] = {.lex_state = 124, .external_lex_state = 4}, - [631] = {.lex_state = 124, .external_lex_state = 4}, - [632] = {.lex_state = 124, .external_lex_state = 3}, - [633] = {.lex_state = 124, .external_lex_state = 4}, - [634] = {.lex_state = 124, .external_lex_state = 4}, - [635] = {.lex_state = 124, .external_lex_state = 4}, - [636] = {.lex_state = 124, .external_lex_state = 4}, - [637] = {.lex_state = 124, .external_lex_state = 4}, - [638] = {.lex_state = 124, .external_lex_state = 4}, - [639] = {.lex_state = 124, .external_lex_state = 4}, - [640] = {.lex_state = 124, .external_lex_state = 4}, - [641] = {.lex_state = 124, .external_lex_state = 4}, - [642] = {.lex_state = 124, .external_lex_state = 4}, - [643] = {.lex_state = 124, .external_lex_state = 4}, - [644] = {.lex_state = 124, .external_lex_state = 4}, - [645] = {.lex_state = 124, .external_lex_state = 3}, - [646] = {.lex_state = 124, .external_lex_state = 4}, - [647] = {.lex_state = 124, .external_lex_state = 4}, - [648] = {.lex_state = 124, .external_lex_state = 4}, - [649] = {.lex_state = 124, .external_lex_state = 4}, - [650] = {.lex_state = 124, .external_lex_state = 4}, - [651] = {.lex_state = 124, .external_lex_state = 4}, - [652] = {.lex_state = 124, .external_lex_state = 4}, - [653] = {.lex_state = 124, .external_lex_state = 4}, - [654] = {.lex_state = 124, .external_lex_state = 4}, - [655] = {.lex_state = 124, .external_lex_state = 4}, - [656] = {.lex_state = 124, .external_lex_state = 4}, - [657] = {.lex_state = 124, .external_lex_state = 4}, - [658] = {.lex_state = 124, .external_lex_state = 4}, - [659] = {.lex_state = 124, .external_lex_state = 4}, - [660] = {.lex_state = 124, .external_lex_state = 4}, - [661] = {.lex_state = 124, .external_lex_state = 4}, - [662] = {.lex_state = 124, .external_lex_state = 4}, - [663] = {.lex_state = 124, .external_lex_state = 4}, - [664] = {.lex_state = 124, .external_lex_state = 4}, - [665] = {.lex_state = 7, .external_lex_state = 4}, - [666] = {.lex_state = 124, .external_lex_state = 4}, - [667] = {.lex_state = 124, .external_lex_state = 3}, - [668] = {.lex_state = 124, .external_lex_state = 3}, - [669] = {.lex_state = 124, .external_lex_state = 3}, - [670] = {.lex_state = 124, .external_lex_state = 4}, - [671] = {.lex_state = 124, .external_lex_state = 3}, - [672] = {.lex_state = 124, .external_lex_state = 4}, - [673] = {.lex_state = 124, .external_lex_state = 4}, - [674] = {.lex_state = 124, .external_lex_state = 4}, - [675] = {.lex_state = 124, .external_lex_state = 4}, - [676] = {.lex_state = 124, .external_lex_state = 4}, - [677] = {.lex_state = 124, .external_lex_state = 4}, - [678] = {.lex_state = 124, .external_lex_state = 4}, - [679] = {.lex_state = 124, .external_lex_state = 4}, - [680] = {.lex_state = 124, .external_lex_state = 4}, - [681] = {.lex_state = 124, .external_lex_state = 4}, - [682] = {.lex_state = 7, .external_lex_state = 4}, - [683] = {.lex_state = 124, .external_lex_state = 4}, - [684] = {.lex_state = 124, .external_lex_state = 4}, - [685] = {.lex_state = 124, .external_lex_state = 4}, - [686] = {.lex_state = 124, .external_lex_state = 4}, - [687] = {.lex_state = 124, .external_lex_state = 4}, - [688] = {.lex_state = 124, .external_lex_state = 4}, - [689] = {.lex_state = 124, .external_lex_state = 4}, - [690] = {.lex_state = 124, .external_lex_state = 4}, - [691] = {.lex_state = 124, .external_lex_state = 4}, - [692] = {.lex_state = 124, .external_lex_state = 4}, - [693] = {.lex_state = 124, .external_lex_state = 4}, - [694] = {.lex_state = 124, .external_lex_state = 4}, - [695] = {.lex_state = 124, .external_lex_state = 4}, - [696] = {.lex_state = 124, .external_lex_state = 4}, - [697] = {.lex_state = 124, .external_lex_state = 4}, - [698] = {.lex_state = 124, .external_lex_state = 4}, - [699] = {.lex_state = 124, .external_lex_state = 4}, - [700] = {.lex_state = 124, .external_lex_state = 4}, - [701] = {.lex_state = 124, .external_lex_state = 4}, - [702] = {.lex_state = 124, .external_lex_state = 4}, - [703] = {.lex_state = 124, .external_lex_state = 4}, - [704] = {.lex_state = 124, .external_lex_state = 4}, - [705] = {.lex_state = 124, .external_lex_state = 4}, - [706] = {.lex_state = 124, .external_lex_state = 4}, - [707] = {.lex_state = 124, .external_lex_state = 4}, - [708] = {.lex_state = 124, .external_lex_state = 4}, - [709] = {.lex_state = 124, .external_lex_state = 4}, - [710] = {.lex_state = 124, .external_lex_state = 4}, - [711] = {.lex_state = 124, .external_lex_state = 4}, - [712] = {.lex_state = 124, .external_lex_state = 4}, - [713] = {.lex_state = 124, .external_lex_state = 4}, - [714] = {.lex_state = 124, .external_lex_state = 4}, - [715] = {.lex_state = 124, .external_lex_state = 4}, - [716] = {.lex_state = 124, .external_lex_state = 4}, - [717] = {.lex_state = 124, .external_lex_state = 4}, - [718] = {.lex_state = 124, .external_lex_state = 4}, - [719] = {.lex_state = 124, .external_lex_state = 4}, - [720] = {.lex_state = 124, .external_lex_state = 4}, - [721] = {.lex_state = 124, .external_lex_state = 4}, - [722] = {.lex_state = 124, .external_lex_state = 4}, - [723] = {.lex_state = 124, .external_lex_state = 4}, - [724] = {.lex_state = 124, .external_lex_state = 4}, - [725] = {.lex_state = 124, .external_lex_state = 4}, - [726] = {.lex_state = 124, .external_lex_state = 4}, - [727] = {.lex_state = 124, .external_lex_state = 4}, - [728] = {.lex_state = 124, .external_lex_state = 4}, - [729] = {.lex_state = 124, .external_lex_state = 4}, - [730] = {.lex_state = 124, .external_lex_state = 4}, - [731] = {.lex_state = 124, .external_lex_state = 4}, - [732] = {.lex_state = 124, .external_lex_state = 4}, - [733] = {.lex_state = 124, .external_lex_state = 4}, - [734] = {.lex_state = 124, .external_lex_state = 4}, - [735] = {.lex_state = 124, .external_lex_state = 3}, - [736] = {.lex_state = 124, .external_lex_state = 4}, - [737] = {.lex_state = 124, .external_lex_state = 3}, - [738] = {.lex_state = 124, .external_lex_state = 4}, - [739] = {.lex_state = 124, .external_lex_state = 3}, - [740] = {.lex_state = 124, .external_lex_state = 3}, - [741] = {.lex_state = 124, .external_lex_state = 3}, - [742] = {.lex_state = 124, .external_lex_state = 3}, - [743] = {.lex_state = 124, .external_lex_state = 4}, - [744] = {.lex_state = 124, .external_lex_state = 3}, - [745] = {.lex_state = 124, .external_lex_state = 4}, - [746] = {.lex_state = 124, .external_lex_state = 4}, - [747] = {.lex_state = 124, .external_lex_state = 4}, - [748] = {.lex_state = 124, .external_lex_state = 4}, - [749] = {.lex_state = 124, .external_lex_state = 4}, - [750] = {.lex_state = 124, .external_lex_state = 3}, - [751] = {.lex_state = 124, .external_lex_state = 3}, - [752] = {.lex_state = 124, .external_lex_state = 3}, - [753] = {.lex_state = 124, .external_lex_state = 3}, - [754] = {.lex_state = 124, .external_lex_state = 3}, - [755] = {.lex_state = 124, .external_lex_state = 3}, - [756] = {.lex_state = 124, .external_lex_state = 3}, - [757] = {.lex_state = 124, .external_lex_state = 3}, - [758] = {.lex_state = 124, .external_lex_state = 4}, - [759] = {.lex_state = 124, .external_lex_state = 3}, - [760] = {.lex_state = 124, .external_lex_state = 3}, - [761] = {.lex_state = 124, .external_lex_state = 3}, - [762] = {.lex_state = 124, .external_lex_state = 3}, - [763] = {.lex_state = 124, .external_lex_state = 3}, - [764] = {.lex_state = 124, .external_lex_state = 3}, - [765] = {.lex_state = 124, .external_lex_state = 3}, - [766] = {.lex_state = 124, .external_lex_state = 3}, - [767] = {.lex_state = 124, .external_lex_state = 3}, - [768] = {.lex_state = 124, .external_lex_state = 3}, - [769] = {.lex_state = 124, .external_lex_state = 3}, - [770] = {.lex_state = 124, .external_lex_state = 3}, - [771] = {.lex_state = 124, .external_lex_state = 3}, - [772] = {.lex_state = 124, .external_lex_state = 3}, - [773] = {.lex_state = 124, .external_lex_state = 3}, - [774] = {.lex_state = 124, .external_lex_state = 3}, - [775] = {.lex_state = 124, .external_lex_state = 3}, - [776] = {.lex_state = 124, .external_lex_state = 3}, - [777] = {.lex_state = 124, .external_lex_state = 3}, - [778] = {.lex_state = 124, .external_lex_state = 3}, - [779] = {.lex_state = 124, .external_lex_state = 3}, - [780] = {.lex_state = 124, .external_lex_state = 3}, - [781] = {.lex_state = 124, .external_lex_state = 3}, - [782] = {.lex_state = 124, .external_lex_state = 3}, - [783] = {.lex_state = 124, .external_lex_state = 3}, - [784] = {.lex_state = 124, .external_lex_state = 3}, - [785] = {.lex_state = 124, .external_lex_state = 3}, - [786] = {.lex_state = 124, .external_lex_state = 3}, - [787] = {.lex_state = 124, .external_lex_state = 3}, - [788] = {.lex_state = 124, .external_lex_state = 3}, - [789] = {.lex_state = 124, .external_lex_state = 3}, - [790] = {.lex_state = 124, .external_lex_state = 3}, - [791] = {.lex_state = 124, .external_lex_state = 3}, - [792] = {.lex_state = 124, .external_lex_state = 3}, - [793] = {.lex_state = 124, .external_lex_state = 3}, - [794] = {.lex_state = 124, .external_lex_state = 3}, - [795] = {.lex_state = 124, .external_lex_state = 3}, - [796] = {.lex_state = 124, .external_lex_state = 3}, - [797] = {.lex_state = 124, .external_lex_state = 3}, - [798] = {.lex_state = 124, .external_lex_state = 3}, - [799] = {.lex_state = 124, .external_lex_state = 3}, - [800] = {.lex_state = 124, .external_lex_state = 3}, - [801] = {.lex_state = 124, .external_lex_state = 3}, - [802] = {.lex_state = 124, .external_lex_state = 3}, - [803] = {.lex_state = 124, .external_lex_state = 3}, - [804] = {.lex_state = 124, .external_lex_state = 3}, - [805] = {.lex_state = 124, .external_lex_state = 3}, - [806] = {.lex_state = 124, .external_lex_state = 3}, - [807] = {.lex_state = 124, .external_lex_state = 3}, - [808] = {.lex_state = 124, .external_lex_state = 3}, - [809] = {.lex_state = 124, .external_lex_state = 3}, - [810] = {.lex_state = 124, .external_lex_state = 3}, - [811] = {.lex_state = 124, .external_lex_state = 3}, - [812] = {.lex_state = 124, .external_lex_state = 3}, - [813] = {.lex_state = 124, .external_lex_state = 3}, - [814] = {.lex_state = 124, .external_lex_state = 3}, - [815] = {.lex_state = 124, .external_lex_state = 4}, - [816] = {.lex_state = 124, .external_lex_state = 3}, - [817] = {.lex_state = 124, .external_lex_state = 3}, - [818] = {.lex_state = 124, .external_lex_state = 3}, - [819] = {.lex_state = 124, .external_lex_state = 3}, - [820] = {.lex_state = 124, .external_lex_state = 3}, - [821] = {.lex_state = 124, .external_lex_state = 3}, - [822] = {.lex_state = 7, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 2}, - [824] = {.lex_state = 4, .external_lex_state = 2}, - [825] = {.lex_state = 124, .external_lex_state = 4}, - [826] = {.lex_state = 4, .external_lex_state = 2}, - [827] = {.lex_state = 4, .external_lex_state = 2}, - [828] = {.lex_state = 4, .external_lex_state = 2}, - [829] = {.lex_state = 4, .external_lex_state = 2}, - [830] = {.lex_state = 124, .external_lex_state = 3}, - [831] = {.lex_state = 124, .external_lex_state = 4}, - [832] = {.lex_state = 124, .external_lex_state = 3}, - [833] = {.lex_state = 124, .external_lex_state = 3}, - [834] = {.lex_state = 124, .external_lex_state = 3}, - [835] = {.lex_state = 124, .external_lex_state = 3}, - [836] = {.lex_state = 124, .external_lex_state = 3}, - [837] = {.lex_state = 124, .external_lex_state = 3}, - [838] = {.lex_state = 124, .external_lex_state = 3}, - [839] = {.lex_state = 124, .external_lex_state = 3}, - [840] = {.lex_state = 124, .external_lex_state = 3}, - [841] = {.lex_state = 124, .external_lex_state = 3}, - [842] = {.lex_state = 124, .external_lex_state = 3}, - [843] = {.lex_state = 124, .external_lex_state = 3}, - [844] = {.lex_state = 124, .external_lex_state = 3}, - [845] = {.lex_state = 124, .external_lex_state = 3}, - [846] = {.lex_state = 124, .external_lex_state = 3}, - [847] = {.lex_state = 124, .external_lex_state = 3}, - [848] = {.lex_state = 124, .external_lex_state = 3}, - [849] = {.lex_state = 124, .external_lex_state = 3}, - [850] = {.lex_state = 124, .external_lex_state = 3}, - [851] = {.lex_state = 124, .external_lex_state = 3}, - [852] = {.lex_state = 124, .external_lex_state = 3}, - [853] = {.lex_state = 124, .external_lex_state = 3}, - [854] = {.lex_state = 124, .external_lex_state = 3}, - [855] = {.lex_state = 124, .external_lex_state = 3}, - [856] = {.lex_state = 124, .external_lex_state = 3}, - [857] = {.lex_state = 124, .external_lex_state = 3}, - [858] = {.lex_state = 124, .external_lex_state = 3}, - [859] = {.lex_state = 124, .external_lex_state = 3}, - [860] = {.lex_state = 124, .external_lex_state = 3}, - [861] = {.lex_state = 124, .external_lex_state = 3}, - [862] = {.lex_state = 124, .external_lex_state = 3}, - [863] = {.lex_state = 124, .external_lex_state = 3}, - [864] = {.lex_state = 124, .external_lex_state = 3}, - [865] = {.lex_state = 124, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 2}, - [867] = {.lex_state = 124, .external_lex_state = 3}, - [868] = {.lex_state = 124, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 2}, - [870] = {.lex_state = 4, .external_lex_state = 2}, - [871] = {.lex_state = 4, .external_lex_state = 2}, - [872] = {.lex_state = 4, .external_lex_state = 2}, - [873] = {.lex_state = 4, .external_lex_state = 2}, - [874] = {.lex_state = 4, .external_lex_state = 2}, - [875] = {.lex_state = 4, .external_lex_state = 2}, - [876] = {.lex_state = 4, .external_lex_state = 2}, - [877] = {.lex_state = 125, .external_lex_state = 2}, - [878] = {.lex_state = 125, .external_lex_state = 2}, - [879] = {.lex_state = 4, .external_lex_state = 2}, - [880] = {.lex_state = 125, .external_lex_state = 2}, - [881] = {.lex_state = 125, .external_lex_state = 2}, - [882] = {.lex_state = 125, .external_lex_state = 2}, - [883] = {.lex_state = 125, .external_lex_state = 2}, - [884] = {.lex_state = 125, .external_lex_state = 2}, - [885] = {.lex_state = 125, .external_lex_state = 2}, - [886] = {.lex_state = 125, .external_lex_state = 2}, - [887] = {.lex_state = 125, .external_lex_state = 2}, - [888] = {.lex_state = 125, .external_lex_state = 2}, - [889] = {.lex_state = 125, .external_lex_state = 2}, - [890] = {.lex_state = 125, .external_lex_state = 2}, - [891] = {.lex_state = 125, .external_lex_state = 2}, - [892] = {.lex_state = 125, .external_lex_state = 2}, - [893] = {.lex_state = 125, .external_lex_state = 2}, - [894] = {.lex_state = 125, .external_lex_state = 2}, - [895] = {.lex_state = 125, .external_lex_state = 5}, - [896] = {.lex_state = 125, .external_lex_state = 2}, - [897] = {.lex_state = 125, .external_lex_state = 2}, - [898] = {.lex_state = 125, .external_lex_state = 2}, - [899] = {.lex_state = 125, .external_lex_state = 2}, - [900] = {.lex_state = 125, .external_lex_state = 2}, - [901] = {.lex_state = 125, .external_lex_state = 2}, - [902] = {.lex_state = 125, .external_lex_state = 2}, - [903] = {.lex_state = 4, .external_lex_state = 2}, - [904] = {.lex_state = 125, .external_lex_state = 2}, - [905] = {.lex_state = 125, .external_lex_state = 2}, - [906] = {.lex_state = 125, .external_lex_state = 5}, - [907] = {.lex_state = 125, .external_lex_state = 5}, - [908] = {.lex_state = 125, .external_lex_state = 5}, - [909] = {.lex_state = 125, .external_lex_state = 2}, - [910] = {.lex_state = 4, .external_lex_state = 2}, - [911] = {.lex_state = 125, .external_lex_state = 5}, - [912] = {.lex_state = 125, .external_lex_state = 2}, - [913] = {.lex_state = 125, .external_lex_state = 5}, - [914] = {.lex_state = 125, .external_lex_state = 2}, - [915] = {.lex_state = 4, .external_lex_state = 2}, - [916] = {.lex_state = 125, .external_lex_state = 5}, - [917] = {.lex_state = 9, .external_lex_state = 2}, - [918] = {.lex_state = 125, .external_lex_state = 5}, - [919] = {.lex_state = 125, .external_lex_state = 5}, - [920] = {.lex_state = 125, .external_lex_state = 5}, - [921] = {.lex_state = 125, .external_lex_state = 5}, - [922] = {.lex_state = 125, .external_lex_state = 2}, - [923] = {.lex_state = 125, .external_lex_state = 5}, - [924] = {.lex_state = 4, .external_lex_state = 2}, - [925] = {.lex_state = 4, .external_lex_state = 2}, - [926] = {.lex_state = 4, .external_lex_state = 2}, - [927] = {.lex_state = 4, .external_lex_state = 2}, - [928] = {.lex_state = 4, .external_lex_state = 2}, - [929] = {.lex_state = 9, .external_lex_state = 2}, - [930] = {.lex_state = 4, .external_lex_state = 2}, - [931] = {.lex_state = 4, .external_lex_state = 2}, - [932] = {.lex_state = 4, .external_lex_state = 2}, - [933] = {.lex_state = 4, .external_lex_state = 2}, - [934] = {.lex_state = 4, .external_lex_state = 2}, - [935] = {.lex_state = 4, .external_lex_state = 2}, - [936] = {.lex_state = 4, .external_lex_state = 2}, - [937] = {.lex_state = 4, .external_lex_state = 2}, - [938] = {.lex_state = 4, .external_lex_state = 2}, - [939] = {.lex_state = 4, .external_lex_state = 2}, - [940] = {.lex_state = 4, .external_lex_state = 2}, - [941] = {.lex_state = 4, .external_lex_state = 2}, - [942] = {.lex_state = 4, .external_lex_state = 2}, - [943] = {.lex_state = 4, .external_lex_state = 2}, - [944] = {.lex_state = 4, .external_lex_state = 2}, - [945] = {.lex_state = 4, .external_lex_state = 2}, - [946] = {.lex_state = 4, .external_lex_state = 2}, - [947] = {.lex_state = 4, .external_lex_state = 2}, - [948] = {.lex_state = 4, .external_lex_state = 5}, - [949] = {.lex_state = 4, .external_lex_state = 2}, - [950] = {.lex_state = 4, .external_lex_state = 2}, - [951] = {.lex_state = 4, .external_lex_state = 2}, - [952] = {.lex_state = 4, .external_lex_state = 2}, - [953] = {.lex_state = 4, .external_lex_state = 5}, - [954] = {.lex_state = 4, .external_lex_state = 2}, - [955] = {.lex_state = 4, .external_lex_state = 2}, - [956] = {.lex_state = 4, .external_lex_state = 2}, - [957] = {.lex_state = 4, .external_lex_state = 2}, - [958] = {.lex_state = 4, .external_lex_state = 2}, - [959] = {.lex_state = 125, .external_lex_state = 2}, - [960] = {.lex_state = 125, .external_lex_state = 2}, - [961] = {.lex_state = 125, .external_lex_state = 2}, - [962] = {.lex_state = 4, .external_lex_state = 2}, - [963] = {.lex_state = 4, .external_lex_state = 2}, - [964] = {.lex_state = 125, .external_lex_state = 2}, - [965] = {.lex_state = 125, .external_lex_state = 2}, - [966] = {.lex_state = 125, .external_lex_state = 2}, - [967] = {.lex_state = 125, .external_lex_state = 2}, - [968] = {.lex_state = 125, .external_lex_state = 2}, - [969] = {.lex_state = 4, .external_lex_state = 2}, - [970] = {.lex_state = 125, .external_lex_state = 2}, - [971] = {.lex_state = 4, .external_lex_state = 2}, - [972] = {.lex_state = 125, .external_lex_state = 2}, - [973] = {.lex_state = 125, .external_lex_state = 2}, - [974] = {.lex_state = 125, .external_lex_state = 2}, - [975] = {.lex_state = 125, .external_lex_state = 2}, - [976] = {.lex_state = 4, .external_lex_state = 2}, - [977] = {.lex_state = 125, .external_lex_state = 2}, - [978] = {.lex_state = 125, .external_lex_state = 2}, - [979] = {.lex_state = 125, .external_lex_state = 2}, - [980] = {.lex_state = 125, .external_lex_state = 2}, - [981] = {.lex_state = 125, .external_lex_state = 2}, - [982] = {.lex_state = 125, .external_lex_state = 2}, - [983] = {.lex_state = 125, .external_lex_state = 2}, - [984] = {.lex_state = 125, .external_lex_state = 2}, - [985] = {.lex_state = 125, .external_lex_state = 2}, - [986] = {.lex_state = 125, .external_lex_state = 2}, - [987] = {.lex_state = 125, .external_lex_state = 2}, - [988] = {.lex_state = 125, .external_lex_state = 2}, - [989] = {.lex_state = 125, .external_lex_state = 2}, - [990] = {.lex_state = 125, .external_lex_state = 2}, - [991] = {.lex_state = 125, .external_lex_state = 2}, - [992] = {.lex_state = 125, .external_lex_state = 2}, - [993] = {.lex_state = 125, .external_lex_state = 2}, - [994] = {.lex_state = 125, .external_lex_state = 2}, - [995] = {.lex_state = 125, .external_lex_state = 2}, - [996] = {.lex_state = 125, .external_lex_state = 2}, - [997] = {.lex_state = 125, .external_lex_state = 2}, - [998] = {.lex_state = 125, .external_lex_state = 2}, - [999] = {.lex_state = 125, .external_lex_state = 2}, - [1000] = {.lex_state = 4, .external_lex_state = 2}, - [1001] = {.lex_state = 4, .external_lex_state = 2}, - [1002] = {.lex_state = 4, .external_lex_state = 2}, - [1003] = {.lex_state = 125, .external_lex_state = 2}, - [1004] = {.lex_state = 4, .external_lex_state = 2}, - [1005] = {.lex_state = 125, .external_lex_state = 2}, - [1006] = {.lex_state = 4, .external_lex_state = 2}, - [1007] = {.lex_state = 125, .external_lex_state = 2}, - [1008] = {.lex_state = 125, .external_lex_state = 2}, - [1009] = {.lex_state = 125, .external_lex_state = 2}, - [1010] = {.lex_state = 125, .external_lex_state = 2}, - [1011] = {.lex_state = 125, .external_lex_state = 2}, - [1012] = {.lex_state = 125, .external_lex_state = 2}, - [1013] = {.lex_state = 125, .external_lex_state = 2}, - [1014] = {.lex_state = 125, .external_lex_state = 2}, - [1015] = {.lex_state = 6, .external_lex_state = 2}, - [1016] = {.lex_state = 125, .external_lex_state = 2}, - [1017] = {.lex_state = 125, .external_lex_state = 2}, - [1018] = {.lex_state = 6, .external_lex_state = 2}, - [1019] = {.lex_state = 6, .external_lex_state = 2}, - [1020] = {.lex_state = 125, .external_lex_state = 2}, - [1021] = {.lex_state = 125, .external_lex_state = 2}, - [1022] = {.lex_state = 125, .external_lex_state = 2}, - [1023] = {.lex_state = 6, .external_lex_state = 2}, - [1024] = {.lex_state = 125, .external_lex_state = 2}, - [1025] = {.lex_state = 125, .external_lex_state = 2}, - [1026] = {.lex_state = 125, .external_lex_state = 2}, - [1027] = {.lex_state = 125, .external_lex_state = 2}, - [1028] = {.lex_state = 125, .external_lex_state = 2}, - [1029] = {.lex_state = 6, .external_lex_state = 2}, - [1030] = {.lex_state = 125, .external_lex_state = 2}, - [1031] = {.lex_state = 124, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1032] = {.lex_state = 9, .external_lex_state = 6}, - [1033] = {.lex_state = 9, .external_lex_state = 6}, - [1034] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1035] = {.lex_state = 9, .external_lex_state = 6}, - [1036] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1037] = {.lex_state = 9, .external_lex_state = 6}, - [1038] = {.lex_state = 9, .external_lex_state = 6}, - [1039] = {.lex_state = 9, .external_lex_state = 6}, - [1040] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1041] = {.lex_state = 9, .external_lex_state = 6}, - [1042] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1043] = {.lex_state = 9, .external_lex_state = 6}, - [1044] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1045] = {.lex_state = 9, .external_lex_state = 6}, - [1046] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1047] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1048] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1049] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1050] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1051] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1052] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1053] = {.lex_state = 125, .external_lex_state = 2}, - [1054] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1055] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1056] = {.lex_state = 125, .external_lex_state = 2}, - [1057] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1058] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1059] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1060] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1061] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1062] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1063] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1064] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1065] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1066] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1067] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1068] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1069] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1070] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1071] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1072] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1073] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1074] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1075] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1076] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1077] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1078] = {.lex_state = 125, .external_lex_state = 2}, - [1079] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1080] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1081] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1082] = {.lex_state = 125, .external_lex_state = 2}, - [1083] = {.lex_state = 125, .external_lex_state = 2}, - [1084] = {.lex_state = 125, .external_lex_state = 2}, - [1085] = {.lex_state = 125, .external_lex_state = 2}, - [1086] = {.lex_state = 125, .external_lex_state = 2}, - [1087] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1088] = {.lex_state = 125, .external_lex_state = 2}, - [1089] = {.lex_state = 125, .external_lex_state = 2}, - [1090] = {.lex_state = 125, .external_lex_state = 2}, - [1091] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1092] = {.lex_state = 125, .external_lex_state = 5}, - [1093] = {.lex_state = 125, .external_lex_state = 2}, - [1094] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1095] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1096] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1097] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1098] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1099] = {.lex_state = 125, .external_lex_state = 5}, - [1100] = {.lex_state = 125, .external_lex_state = 2}, - [1101] = {.lex_state = 125, .external_lex_state = 2}, - [1102] = {.lex_state = 125, .external_lex_state = 2}, - [1103] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1104] = {.lex_state = 125, .external_lex_state = 2}, - [1105] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1106] = {.lex_state = 16, .external_lex_state = 7}, - [1107] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1108] = {.lex_state = 125, .external_lex_state = 2}, - [1109] = {.lex_state = 125, .external_lex_state = 5}, - [1110] = {.lex_state = 125, .external_lex_state = 5}, - [1111] = {.lex_state = 125, .external_lex_state = 5}, - [1112] = {.lex_state = 125, .external_lex_state = 2}, - [1113] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1114] = {.lex_state = 125, .external_lex_state = 5}, - [1115] = {.lex_state = 16, .external_lex_state = 7}, - [1116] = {.lex_state = 125, .external_lex_state = 5}, - [1117] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1118] = {.lex_state = 125, .external_lex_state = 5}, - [1119] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1120] = {.lex_state = 125, .external_lex_state = 2}, - [1121] = {.lex_state = 125, .external_lex_state = 5}, - [1122] = {.lex_state = 16, .external_lex_state = 7}, - [1123] = {.lex_state = 16, .external_lex_state = 7}, - [1124] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1125] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1126] = {.lex_state = 125, .external_lex_state = 5}, - [1127] = {.lex_state = 125, .external_lex_state = 5}, - [1128] = {.lex_state = 125, .external_lex_state = 5}, - [1129] = {.lex_state = 125, .external_lex_state = 5}, - [1130] = {.lex_state = 125, .external_lex_state = 5}, - [1131] = {.lex_state = 125, .external_lex_state = 2}, - [1132] = {.lex_state = 16, .external_lex_state = 7}, - [1133] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1134] = {.lex_state = 9, .external_lex_state = 6}, - [1135] = {.lex_state = 125, .external_lex_state = 2}, - [1136] = {.lex_state = 9, .external_lex_state = 6}, - [1137] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1138] = {.lex_state = 125, .external_lex_state = 2}, - [1139] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1140] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1141] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1142] = {.lex_state = 125, .external_lex_state = 2}, - [1143] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1144] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1145] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1146] = {.lex_state = 9, .external_lex_state = 6}, - [1147] = {.lex_state = 9, .external_lex_state = 6}, - [1148] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1149] = {.lex_state = 9, .external_lex_state = 6}, - [1150] = {.lex_state = 9, .external_lex_state = 6}, - [1151] = {.lex_state = 125, .external_lex_state = 2}, - [1152] = {.lex_state = 9, .external_lex_state = 6}, - [1153] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1154] = {.lex_state = 9, .external_lex_state = 6}, - [1155] = {.lex_state = 9, .external_lex_state = 6}, - [1156] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1157] = {.lex_state = 9, .external_lex_state = 6}, - [1158] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1159] = {.lex_state = 125, .external_lex_state = 2}, - [1160] = {.lex_state = 125, .external_lex_state = 2}, - [1161] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1162] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1163] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1164] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1165] = {.lex_state = 9, .external_lex_state = 6}, - [1166] = {.lex_state = 125, .external_lex_state = 2}, - [1167] = {.lex_state = 125, .external_lex_state = 5}, - [1168] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1170] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1171] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1172] = {.lex_state = 9, .external_lex_state = 6}, - [1173] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1174] = {.lex_state = 125, .external_lex_state = 2}, - [1175] = {.lex_state = 125, .external_lex_state = 2}, - [1176] = {.lex_state = 125, .external_lex_state = 2}, - [1177] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1178] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1179] = {.lex_state = 9, .external_lex_state = 6}, - [1180] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1181] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1182] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1183] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1184] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1185] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1186] = {.lex_state = 9, .external_lex_state = 6}, - [1187] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1188] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1189] = {.lex_state = 9, .external_lex_state = 6}, - [1190] = {.lex_state = 125, .external_lex_state = 2}, - [1191] = {.lex_state = 125, .external_lex_state = 5}, - [1192] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1193] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1194] = {.lex_state = 125, .external_lex_state = 5}, - [1195] = {.lex_state = 9, .external_lex_state = 6}, - [1196] = {.lex_state = 125, .external_lex_state = 5}, - [1197] = {.lex_state = 125, .external_lex_state = 2}, - [1198] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1199] = {.lex_state = 9, .external_lex_state = 6}, - [1200] = {.lex_state = 20, .external_lex_state = 8}, - [1201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1202] = {.lex_state = 125, .external_lex_state = 2}, - [1203] = {.lex_state = 125, .external_lex_state = 2}, - [1204] = {.lex_state = 125, .external_lex_state = 2}, - [1205] = {.lex_state = 10, .external_lex_state = 2}, - [1206] = {.lex_state = 125, .external_lex_state = 2}, - [1207] = {.lex_state = 125, .external_lex_state = 2}, - [1208] = {.lex_state = 125, .external_lex_state = 2}, - [1209] = {.lex_state = 18, .external_lex_state = 2}, - [1210] = {.lex_state = 125, .external_lex_state = 2}, - [1211] = {.lex_state = 125, .external_lex_state = 5}, - [1212] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1213] = {.lex_state = 10, .external_lex_state = 2}, - [1214] = {.lex_state = 12, .external_lex_state = 8}, - [1215] = {.lex_state = 125, .external_lex_state = 2}, - [1216] = {.lex_state = 125, .external_lex_state = 2}, - [1217] = {.lex_state = 125, .external_lex_state = 2}, - [1218] = {.lex_state = 18, .external_lex_state = 2}, - [1219] = {.lex_state = 125, .external_lex_state = 2}, - [1220] = {.lex_state = 125, .external_lex_state = 2}, - [1221] = {.lex_state = 125, .external_lex_state = 2}, - [1222] = {.lex_state = 20, .external_lex_state = 8}, - [1223] = {.lex_state = 125, .external_lex_state = 5}, - [1224] = {.lex_state = 20, .external_lex_state = 8}, - [1225] = {.lex_state = 20, .external_lex_state = 8}, - [1226] = {.lex_state = 12, .external_lex_state = 8}, - [1227] = {.lex_state = 20, .external_lex_state = 8}, - [1228] = {.lex_state = 125, .external_lex_state = 2}, - [1229] = {.lex_state = 125, .external_lex_state = 2}, - [1230] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1231] = {.lex_state = 125, .external_lex_state = 5}, - [1232] = {.lex_state = 124, .external_lex_state = 2}, - [1233] = {.lex_state = 125, .external_lex_state = 2}, - [1234] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1235] = {.lex_state = 12, .external_lex_state = 8}, - [1236] = {.lex_state = 20, .external_lex_state = 8}, - [1237] = {.lex_state = 125, .external_lex_state = 2}, - [1238] = {.lex_state = 125, .external_lex_state = 2}, - [1239] = {.lex_state = 20, .external_lex_state = 8}, - [1240] = {.lex_state = 125, .external_lex_state = 5}, - [1241] = {.lex_state = 125, .external_lex_state = 2}, - [1242] = {.lex_state = 125, .external_lex_state = 5}, - [1243] = {.lex_state = 125, .external_lex_state = 2}, - [1244] = {.lex_state = 12, .external_lex_state = 8}, - [1245] = {.lex_state = 12, .external_lex_state = 8}, - [1246] = {.lex_state = 125, .external_lex_state = 2}, - [1247] = {.lex_state = 12, .external_lex_state = 8}, - [1248] = {.lex_state = 125, .external_lex_state = 5}, - [1249] = {.lex_state = 12, .external_lex_state = 8}, - [1250] = {.lex_state = 20, .external_lex_state = 8}, - [1251] = {.lex_state = 125, .external_lex_state = 2}, - [1252] = {.lex_state = 20, .external_lex_state = 8}, - [1253] = {.lex_state = 125, .external_lex_state = 2}, - [1254] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1255] = {.lex_state = 125, .external_lex_state = 5}, - [1256] = {.lex_state = 125, .external_lex_state = 2}, - [1257] = {.lex_state = 125, .external_lex_state = 2}, - [1258] = {.lex_state = 125, .external_lex_state = 2}, - [1259] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1260] = {.lex_state = 125, .external_lex_state = 5}, - [1261] = {.lex_state = 125, .external_lex_state = 5}, - [1262] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1263] = {.lex_state = 10, .external_lex_state = 2}, - [1264] = {.lex_state = 18, .external_lex_state = 2}, - [1265] = {.lex_state = 16, .external_lex_state = 7}, - [1266] = {.lex_state = 12, .external_lex_state = 8}, - [1267] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1268] = {.lex_state = 125, .external_lex_state = 5}, - [1269] = {.lex_state = 12, .external_lex_state = 8}, - [1270] = {.lex_state = 125, .external_lex_state = 5}, - [1271] = {.lex_state = 125, .external_lex_state = 5}, - [1272] = {.lex_state = 124, .external_lex_state = 2}, - [1273] = {.lex_state = 125, .external_lex_state = 2}, - [1274] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1275] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1276] = {.lex_state = 125, .external_lex_state = 2}, - [1277] = {.lex_state = 125, .external_lex_state = 2}, - [1278] = {.lex_state = 125, .external_lex_state = 2}, - [1279] = {.lex_state = 125, .external_lex_state = 2}, - [1280] = {.lex_state = 125, .external_lex_state = 2}, - [1281] = {.lex_state = 125, .external_lex_state = 2}, - [1282] = {.lex_state = 125, .external_lex_state = 2}, - [1283] = {.lex_state = 125, .external_lex_state = 2}, - [1284] = {.lex_state = 125, .external_lex_state = 2}, - [1285] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1286] = {.lex_state = 125, .external_lex_state = 2}, - [1287] = {.lex_state = 125, .external_lex_state = 2}, - [1288] = {.lex_state = 125, .external_lex_state = 2}, - [1289] = {.lex_state = 125, .external_lex_state = 2}, - [1290] = {.lex_state = 125, .external_lex_state = 2}, - [1291] = {.lex_state = 125, .external_lex_state = 2}, - [1292] = {.lex_state = 125, .external_lex_state = 2}, - [1293] = {.lex_state = 125, .external_lex_state = 5}, - [1294] = {.lex_state = 125, .external_lex_state = 2}, - [1295] = {.lex_state = 125, .external_lex_state = 2}, - [1296] = {.lex_state = 125, .external_lex_state = 2}, - [1297] = {.lex_state = 125, .external_lex_state = 2}, - [1298] = {.lex_state = 125, .external_lex_state = 2}, - [1299] = {.lex_state = 125, .external_lex_state = 2}, - [1300] = {.lex_state = 125, .external_lex_state = 2}, - [1301] = {.lex_state = 125, .external_lex_state = 2}, - [1302] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, - [1303] = {.lex_state = 125, .external_lex_state = 2}, - [1304] = {.lex_state = 125, .external_lex_state = 2}, - [1305] = {.lex_state = 5, .external_lex_state = 2}, - [1306] = {.lex_state = 125, .external_lex_state = 2}, - [1307] = {.lex_state = 125, .external_lex_state = 2}, - [1308] = {.lex_state = 125, .external_lex_state = 5}, - [1309] = {.lex_state = 125, .external_lex_state = 2}, - [1310] = {.lex_state = 125, .external_lex_state = 2}, - [1311] = {.lex_state = 125, .external_lex_state = 2}, - [1312] = {.lex_state = 125, .external_lex_state = 2}, - [1313] = {.lex_state = 125, .external_lex_state = 5}, - [1314] = {.lex_state = 5, .external_lex_state = 2}, - [1315] = {.lex_state = 125, .external_lex_state = 2}, - [1316] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1317] = {.lex_state = 125, .external_lex_state = 2}, - [1318] = {.lex_state = 125, .external_lex_state = 5}, - [1319] = {.lex_state = 125, .external_lex_state = 2}, - [1320] = {.lex_state = 125, .external_lex_state = 2}, - [1321] = {.lex_state = 125, .external_lex_state = 2}, - [1322] = {.lex_state = 125, .external_lex_state = 2}, - [1323] = {.lex_state = 125, .external_lex_state = 2}, - [1324] = {.lex_state = 125, .external_lex_state = 2}, - [1325] = {.lex_state = 125, .external_lex_state = 2}, - [1326] = {.lex_state = 125, .external_lex_state = 2}, - [1327] = {.lex_state = 125, .external_lex_state = 5}, - [1328] = {.lex_state = 125, .external_lex_state = 2}, - [1329] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, - [1330] = {.lex_state = 125, .external_lex_state = 2}, - [1331] = {.lex_state = 125, .external_lex_state = 5}, - [1332] = {.lex_state = 125, .external_lex_state = 2}, - [1333] = {.lex_state = 125, .external_lex_state = 2}, - [1334] = {.lex_state = 125, .external_lex_state = 2}, - [1335] = {.lex_state = 125, .external_lex_state = 2}, - [1336] = {.lex_state = 125, .external_lex_state = 2}, - [1337] = {.lex_state = 124, .external_lex_state = 2}, - [1338] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1339] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1340] = {.lex_state = 124, .external_lex_state = 2}, - [1341] = {.lex_state = 125, .external_lex_state = 2}, - [1342] = {.lex_state = 125, .external_lex_state = 2}, - [1343] = {.lex_state = 125, .external_lex_state = 2}, - [1344] = {.lex_state = 125, .external_lex_state = 2}, - [1345] = {.lex_state = 125, .external_lex_state = 2}, - [1346] = {.lex_state = 125, .external_lex_state = 2}, - [1347] = {.lex_state = 5, .external_lex_state = 2}, - [1348] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1349] = {.lex_state = 125, .external_lex_state = 2}, - [1350] = {.lex_state = 125, .external_lex_state = 2}, - [1351] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1352] = {.lex_state = 125, .external_lex_state = 2}, - [1353] = {.lex_state = 125, .external_lex_state = 2}, - [1354] = {.lex_state = 125, .external_lex_state = 2}, - [1355] = {.lex_state = 125, .external_lex_state = 2}, - [1356] = {.lex_state = 125, .external_lex_state = 2}, - [1357] = {.lex_state = 125, .external_lex_state = 2}, - [1358] = {.lex_state = 125, .external_lex_state = 2}, - [1359] = {.lex_state = 125, .external_lex_state = 5}, - [1360] = {.lex_state = 125, .external_lex_state = 5}, - [1361] = {.lex_state = 125, .external_lex_state = 2}, - [1362] = {.lex_state = 125, .external_lex_state = 2}, - [1363] = {.lex_state = 125, .external_lex_state = 2}, - [1364] = {.lex_state = 125, .external_lex_state = 2}, - [1365] = {.lex_state = 5, .external_lex_state = 2}, - [1366] = {.lex_state = 125, .external_lex_state = 2}, - [1367] = {.lex_state = 125, .external_lex_state = 2}, - [1368] = {.lex_state = 125, .external_lex_state = 2}, - [1369] = {.lex_state = 125, .external_lex_state = 2}, - [1370] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1371] = {.lex_state = 125, .external_lex_state = 2}, - [1372] = {.lex_state = 125, .external_lex_state = 2}, - [1373] = {.lex_state = 125, .external_lex_state = 2}, - [1374] = {.lex_state = 125, .external_lex_state = 2}, - [1375] = {.lex_state = 125, .external_lex_state = 2}, - [1376] = {.lex_state = 125, .external_lex_state = 2}, - [1377] = {.lex_state = 125, .external_lex_state = 2}, - [1378] = {.lex_state = 125, .external_lex_state = 2}, - [1379] = {.lex_state = 125, .external_lex_state = 2}, - [1380] = {.lex_state = 125, .external_lex_state = 2}, - [1381] = {.lex_state = 125, .external_lex_state = 2}, - [1382] = {.lex_state = 125, .external_lex_state = 2}, - [1383] = {.lex_state = 125, .external_lex_state = 2}, - [1384] = {.lex_state = 125, .external_lex_state = 2}, - [1385] = {.lex_state = 125, .external_lex_state = 2}, - [1386] = {.lex_state = 125, .external_lex_state = 2}, - [1387] = {.lex_state = 125, .external_lex_state = 2}, - [1388] = {.lex_state = 125, .external_lex_state = 2}, - [1389] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1390] = {.lex_state = 125, .external_lex_state = 2}, - [1391] = {.lex_state = 125, .external_lex_state = 2}, - [1392] = {.lex_state = 5, .external_lex_state = 2}, - [1393] = {.lex_state = 125, .external_lex_state = 2}, - [1394] = {.lex_state = 125, .external_lex_state = 2}, - [1395] = {.lex_state = 125, .external_lex_state = 2}, - [1396] = {.lex_state = 125, .external_lex_state = 2}, - [1397] = {.lex_state = 125, .external_lex_state = 5}, - [1398] = {.lex_state = 125, .external_lex_state = 5}, - [1399] = {.lex_state = 125, .external_lex_state = 5}, - [1400] = {.lex_state = 125, .external_lex_state = 2}, - [1401] = {.lex_state = 125, .external_lex_state = 5}, - [1402] = {.lex_state = 125, .external_lex_state = 5}, - [1403] = {.lex_state = 125, .external_lex_state = 2}, - [1404] = {.lex_state = 125, .external_lex_state = 2}, - [1405] = {.lex_state = 125, .external_lex_state = 2}, - [1406] = {.lex_state = 125, .external_lex_state = 5}, - [1407] = {.lex_state = 125, .external_lex_state = 5}, - [1408] = {.lex_state = 125, .external_lex_state = 2}, - [1409] = {.lex_state = 125, .external_lex_state = 2}, - [1410] = {.lex_state = 125, .external_lex_state = 2}, - [1411] = {.lex_state = 125, .external_lex_state = 2}, - [1412] = {.lex_state = 125, .external_lex_state = 2}, - [1413] = {.lex_state = 125, .external_lex_state = 2}, - [1414] = {.lex_state = 125, .external_lex_state = 2}, - [1415] = {.lex_state = 125, .external_lex_state = 2}, - [1416] = {.lex_state = 125, .external_lex_state = 2}, - [1417] = {.lex_state = 5, .external_lex_state = 2}, - [1418] = {.lex_state = 125, .external_lex_state = 2}, - [1419] = {.lex_state = 125, .external_lex_state = 2}, - [1420] = {.lex_state = 125, .external_lex_state = 2}, - [1421] = {.lex_state = 125, .external_lex_state = 2}, - [1422] = {.lex_state = 125, .external_lex_state = 2}, - [1423] = {.lex_state = 125, .external_lex_state = 2}, - [1424] = {.lex_state = 125, .external_lex_state = 2}, - [1425] = {.lex_state = 125, .external_lex_state = 2}, - [1426] = {.lex_state = 125, .external_lex_state = 2}, - [1427] = {.lex_state = 125, .external_lex_state = 2}, - [1428] = {.lex_state = 125, .external_lex_state = 2}, - [1429] = {.lex_state = 125, .external_lex_state = 2}, - [1430] = {.lex_state = 125, .external_lex_state = 2}, - [1431] = {.lex_state = 125, .external_lex_state = 2}, - [1432] = {.lex_state = 125, .external_lex_state = 2}, - [1433] = {.lex_state = 125, .external_lex_state = 2}, - [1434] = {.lex_state = 125, .external_lex_state = 2}, - [1435] = {.lex_state = 125, .external_lex_state = 5}, - [1436] = {.lex_state = 125, .external_lex_state = 2}, - [1437] = {.lex_state = 125, .external_lex_state = 2}, - [1438] = {.lex_state = 125, .external_lex_state = 2}, - [1439] = {.lex_state = 125, .external_lex_state = 2}, - [1440] = {.lex_state = 125, .external_lex_state = 2}, - [1441] = {.lex_state = 125, .external_lex_state = 2}, - [1442] = {.lex_state = 125, .external_lex_state = 2}, - [1443] = {.lex_state = 125, .external_lex_state = 2}, - [1444] = {.lex_state = 125, .external_lex_state = 2}, - [1445] = {.lex_state = 125, .external_lex_state = 2}, - [1446] = {.lex_state = 125, .external_lex_state = 2}, - [1447] = {.lex_state = 125, .external_lex_state = 5}, - [1448] = {.lex_state = 125, .external_lex_state = 5}, - [1449] = {.lex_state = 125, .external_lex_state = 2}, - [1450] = {.lex_state = 125, .external_lex_state = 2}, - [1451] = {.lex_state = 125, .external_lex_state = 5}, - [1452] = {.lex_state = 125, .external_lex_state = 2}, - [1453] = {.lex_state = 125, .external_lex_state = 5}, - [1454] = {.lex_state = 125, .external_lex_state = 2}, - [1455] = {.lex_state = 125, .external_lex_state = 5}, - [1456] = {.lex_state = 125, .external_lex_state = 2}, - [1457] = {.lex_state = 125, .external_lex_state = 2}, - [1458] = {.lex_state = 125, .external_lex_state = 2}, - [1459] = {.lex_state = 125, .external_lex_state = 2}, - [1460] = {.lex_state = 125, .external_lex_state = 2}, - [1461] = {.lex_state = 125, .external_lex_state = 5}, - [1462] = {.lex_state = 125, .external_lex_state = 2}, - [1463] = {.lex_state = 125, .external_lex_state = 2}, - [1464] = {.lex_state = 125, .external_lex_state = 2}, - [1465] = {.lex_state = 125, .external_lex_state = 2}, - [1466] = {.lex_state = 125, .external_lex_state = 2}, - [1467] = {.lex_state = 125, .external_lex_state = 2}, - [1468] = {.lex_state = 125, .external_lex_state = 2}, - [1469] = {.lex_state = 125, .external_lex_state = 2}, - [1470] = {.lex_state = 125, .external_lex_state = 2}, - [1471] = {.lex_state = 125, .external_lex_state = 2}, - [1472] = {.lex_state = 125, .external_lex_state = 2}, - [1473] = {.lex_state = 125, .external_lex_state = 2}, - [1474] = {.lex_state = 125, .external_lex_state = 2}, - [1475] = {.lex_state = 125, .external_lex_state = 2}, - [1476] = {.lex_state = 125, .external_lex_state = 5}, - [1477] = {.lex_state = 125, .external_lex_state = 2}, - [1478] = {.lex_state = 125, .external_lex_state = 2}, - [1479] = {.lex_state = 125, .external_lex_state = 2}, - [1480] = {.lex_state = 125, .external_lex_state = 2}, - [1481] = {.lex_state = 125, .external_lex_state = 2}, - [1482] = {.lex_state = 125, .external_lex_state = 2}, - [1483] = {.lex_state = 125, .external_lex_state = 2}, - [1484] = {.lex_state = 125, .external_lex_state = 2}, - [1485] = {.lex_state = 125, .external_lex_state = 2}, - [1486] = {.lex_state = 125, .external_lex_state = 2}, - [1487] = {.lex_state = 125, .external_lex_state = 2}, - [1488] = {.lex_state = 125, .external_lex_state = 2}, - [1489] = {.lex_state = 125, .external_lex_state = 2}, - [1490] = {.lex_state = 125, .external_lex_state = 2}, - [1491] = {.lex_state = 125, .external_lex_state = 2}, - [1492] = {.lex_state = 125, .external_lex_state = 2}, - [1493] = {.lex_state = 125, .external_lex_state = 2}, - [1494] = {.lex_state = 125, .external_lex_state = 2}, - [1495] = {.lex_state = 125, .external_lex_state = 2}, - [1496] = {.lex_state = 125, .external_lex_state = 2}, - [1497] = {.lex_state = 125, .external_lex_state = 2}, - [1498] = {.lex_state = 125, .external_lex_state = 2}, - [1499] = {.lex_state = 125, .external_lex_state = 2}, - [1500] = {.lex_state = 125, .external_lex_state = 2}, - [1501] = {.lex_state = 125, .external_lex_state = 2}, - [1502] = {.lex_state = 125, .external_lex_state = 2}, - [1503] = {.lex_state = 125, .external_lex_state = 2}, - [1504] = {.lex_state = 125, .external_lex_state = 2}, - [1505] = {.lex_state = 125, .external_lex_state = 2}, - [1506] = {.lex_state = 125, .external_lex_state = 2}, - [1507] = {.lex_state = 125, .external_lex_state = 2}, - [1508] = {.lex_state = 125, .external_lex_state = 2}, - [1509] = {.lex_state = 125, .external_lex_state = 2}, - [1510] = {.lex_state = 125, .external_lex_state = 2}, - [1511] = {.lex_state = 125, .external_lex_state = 2}, - [1512] = {.lex_state = 125, .external_lex_state = 2}, - [1513] = {.lex_state = 125, .external_lex_state = 2}, - [1514] = {.lex_state = 125, .external_lex_state = 2}, - [1515] = {.lex_state = 125, .external_lex_state = 2}, - [1516] = {.lex_state = 125, .external_lex_state = 2}, - [1517] = {.lex_state = 125, .external_lex_state = 2}, - [1518] = {.lex_state = 125, .external_lex_state = 2}, - [1519] = {.lex_state = 125, .external_lex_state = 2}, - [1520] = {.lex_state = 125, .external_lex_state = 2}, - [1521] = {.lex_state = 125, .external_lex_state = 2}, - [1522] = {.lex_state = 125, .external_lex_state = 2}, - [1523] = {.lex_state = 125, .external_lex_state = 2}, - [1524] = {.lex_state = 125, .external_lex_state = 2}, - [1525] = {.lex_state = 125, .external_lex_state = 2}, - [1526] = {.lex_state = 125, .external_lex_state = 2}, - [1527] = {.lex_state = 125, .external_lex_state = 2}, - [1528] = {.lex_state = 125, .external_lex_state = 5}, - [1529] = {.lex_state = 125, .external_lex_state = 2}, - [1530] = {.lex_state = 125, .external_lex_state = 2}, - [1531] = {.lex_state = 125, .external_lex_state = 2}, - [1532] = {.lex_state = 125, .external_lex_state = 2}, - [1533] = {.lex_state = 125, .external_lex_state = 2}, - [1534] = {.lex_state = 125, .external_lex_state = 2}, - [1535] = {.lex_state = 125, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, - [1537] = {.lex_state = 125, .external_lex_state = 2}, - [1538] = {.lex_state = 125, .external_lex_state = 2}, - [1539] = {.lex_state = 125, .external_lex_state = 2}, - [1540] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1541] = {.lex_state = 125, .external_lex_state = 2}, - [1542] = {.lex_state = 125, .external_lex_state = 2}, - [1543] = {.lex_state = 125, .external_lex_state = 5}, - [1544] = {.lex_state = 125, .external_lex_state = 2}, - [1545] = {.lex_state = 125, .external_lex_state = 2}, - [1546] = {.lex_state = 125, .external_lex_state = 2}, - [1547] = {.lex_state = 125, .external_lex_state = 2}, - [1548] = {.lex_state = 125, .external_lex_state = 2}, - [1549] = {.lex_state = 125, .external_lex_state = 5}, - [1550] = {.lex_state = 125, .external_lex_state = 2}, - [1551] = {.lex_state = 125, .external_lex_state = 2}, - [1552] = {.lex_state = 125, .external_lex_state = 2}, - [1553] = {.lex_state = 125, .external_lex_state = 2}, - [1554] = {.lex_state = 125, .external_lex_state = 2}, - [1555] = {.lex_state = 125, .external_lex_state = 2}, - [1556] = {.lex_state = 125, .external_lex_state = 2}, - [1557] = {.lex_state = 125, .external_lex_state = 2}, - [1558] = {.lex_state = 125, .external_lex_state = 2}, - [1559] = {.lex_state = 125, .external_lex_state = 2}, - [1560] = {.lex_state = 125, .external_lex_state = 2}, - [1561] = {.lex_state = 125, .external_lex_state = 5}, - [1562] = {.lex_state = 125, .external_lex_state = 5}, - [1563] = {.lex_state = 125, .external_lex_state = 2}, - [1564] = {.lex_state = 125, .external_lex_state = 2}, - [1565] = {.lex_state = 125, .external_lex_state = 2}, - [1566] = {.lex_state = 125, .external_lex_state = 2}, - [1567] = {.lex_state = 125, .external_lex_state = 2}, - [1568] = {.lex_state = 125, .external_lex_state = 5}, - [1569] = {.lex_state = 125, .external_lex_state = 2}, - [1570] = {.lex_state = 125, .external_lex_state = 5}, - [1571] = {.lex_state = 125, .external_lex_state = 2}, - [1572] = {.lex_state = 125, .external_lex_state = 2}, - [1573] = {.lex_state = 125, .external_lex_state = 2}, - [1574] = {.lex_state = 125, .external_lex_state = 2}, - [1575] = {.lex_state = 125, .external_lex_state = 2}, - [1576] = {.lex_state = 125, .external_lex_state = 2}, - [1577] = {.lex_state = 125, .external_lex_state = 2}, - [1578] = {.lex_state = 125, .external_lex_state = 2}, + [449] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [450] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [451] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [452] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [453] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [454] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [455] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [456] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [457] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [458] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [459] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [460] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [461] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [462] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [463] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [464] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [465] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [466] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [467] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [468] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [469] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [470] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [471] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [472] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [473] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [474] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [475] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [476] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [477] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [478] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [479] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [480] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [481] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [482] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [483] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [484] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [485] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [486] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [487] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [488] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [489] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [490] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [491] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [492] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [493] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [494] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [495] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [496] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [497] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [498] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [499] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [500] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [501] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [502] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [503] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [504] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [505] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [506] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [507] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [508] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [509] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [511] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [512] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [513] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [514] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [515] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [516] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [517] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [518] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [519] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [520] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [521] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [522] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [523] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [524] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [525] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [526] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [527] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [528] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [529] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [530] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [531] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [532] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [533] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [534] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [535] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [536] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [537] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [538] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [539] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [540] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [541] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [542] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [543] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [544] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [546] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [547] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [548] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [550] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [551] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [552] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [554] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [555] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [556] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [557] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [558] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [559] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [560] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [561] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [562] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [563] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [564] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [565] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [566] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [567] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [568] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [569] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [570] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [571] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [572] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [573] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [574] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [575] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [576] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [577] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [578] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [579] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [580] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [581] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [582] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [583] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [584] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [585] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [586] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [587] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [588] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [589] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [590] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [591] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [592] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [593] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [594] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [595] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [596] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [597] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [598] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [599] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [600] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [601] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [602] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [603] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [604] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [605] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [606] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [607] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [608] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [609] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [610] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [611] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [612] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [613] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [614] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [615] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [616] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [617] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [618] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [619] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [620] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [621] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [622] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [623] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [624] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [625] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [626] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [627] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [628] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [629] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [630] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [631] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [632] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [633] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [634] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [635] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [636] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [637] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [638] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [639] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [640] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [641] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [642] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [643] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [644] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [645] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [646] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [647] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [648] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [649] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [650] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [651] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [652] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [653] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [654] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [655] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [656] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [657] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [658] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [659] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [660] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [661] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [662] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [663] = {.lex_state = 3, .external_lex_state = 3}, + [664] = {.lex_state = 3, .external_lex_state = 3}, + [665] = {.lex_state = 3, .external_lex_state = 3}, + [666] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [667] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 8}, + [668] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [669] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [670] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 8}, + [671] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 8}, + [672] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [673] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 8}, + [674] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [675] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [676] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 8}, + [677] = {.lex_state = 3, .external_lex_state = 4}, + [678] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [679] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [680] = {.lex_state = 3, .external_lex_state = 5}, + [681] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [682] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [683] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [684] = {.lex_state = 3, .external_lex_state = 4}, + [685] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [686] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [687] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [688] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [689] = {.lex_state = 3, .external_lex_state = 4}, + [690] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [691] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [692] = {.lex_state = 3, .external_lex_state = 4}, + [693] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [694] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [695] = {.lex_state = 3, .external_lex_state = 5}, + [696] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [697] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [698] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [699] = {.lex_state = 3, .external_lex_state = 4}, + [700] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [701] = {.lex_state = 3, .external_lex_state = 4}, + [702] = {.lex_state = 3, .external_lex_state = 4}, + [703] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [704] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [705] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [706] = {.lex_state = 3, .external_lex_state = 4}, + [707] = {.lex_state = 3, .external_lex_state = 4}, + [708] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [709] = {.lex_state = 3, .external_lex_state = 5}, + [710] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 11}, + [711] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [712] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 12}, + [713] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [714] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [715] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [716] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [717] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [718] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [719] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [720] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [721] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [722] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [723] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [724] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [725] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [726] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [727] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [728] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [729] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [730] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [731] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [732] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [733] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [734] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [735] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [736] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [737] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [738] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [739] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [740] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [741] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [742] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [743] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [744] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [745] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 12}, + [746] = {.lex_state = 3, .external_lex_state = 6, .reserved_word_set_id = 1}, + [747] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [748] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [749] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [750] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [751] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [752] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [753] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [754] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [755] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [756] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [757] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [758] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [759] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [760] = {.lex_state = 3, .external_lex_state = 6, .reserved_word_set_id = 1}, + [761] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [762] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [763] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [764] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [765] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [766] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [767] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [768] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [769] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [770] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [771] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [772] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [773] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [774] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [775] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [776] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [777] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [778] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [779] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [780] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [781] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [782] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [783] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [784] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [785] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [786] = {.lex_state = 3, .external_lex_state = 3}, + [787] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [788] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [789] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [790] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [791] = {.lex_state = 3, .external_lex_state = 5}, + [792] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [793] = {.lex_state = 3, .external_lex_state = 5}, + [794] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [795] = {.lex_state = 3, .external_lex_state = 5}, + [796] = {.lex_state = 3, .external_lex_state = 3}, + [797] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [798] = {.lex_state = 3, .external_lex_state = 5}, + [799] = {.lex_state = 3, .external_lex_state = 5}, + [800] = {.lex_state = 3, .external_lex_state = 5}, + [801] = {.lex_state = 3, .external_lex_state = 5}, + [802] = {.lex_state = 3, .external_lex_state = 4}, + [803] = {.lex_state = 3, .external_lex_state = 4}, + [804] = {.lex_state = 3, .external_lex_state = 5}, + [805] = {.lex_state = 3, .external_lex_state = 5}, + [806] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [807] = {.lex_state = 3, .external_lex_state = 5}, + [808] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [809] = {.lex_state = 3, .external_lex_state = 4}, + [810] = {.lex_state = 3, .external_lex_state = 5}, + [811] = {.lex_state = 3, .external_lex_state = 4}, + [812] = {.lex_state = 3, .external_lex_state = 3}, + [813] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [814] = {.lex_state = 3, .external_lex_state = 3}, + [815] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [816] = {.lex_state = 3, .external_lex_state = 5}, + [817] = {.lex_state = 3, .external_lex_state = 5}, + [818] = {.lex_state = 3, .external_lex_state = 5}, + [819] = {.lex_state = 3, .external_lex_state = 6}, + [820] = {.lex_state = 3, .external_lex_state = 3}, + [821] = {.lex_state = 3, .external_lex_state = 5}, + [822] = {.lex_state = 3, .external_lex_state = 5}, + [823] = {.lex_state = 3, .external_lex_state = 5}, + [824] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 12}, + [825] = {.lex_state = 3, .external_lex_state = 5}, + [826] = {.lex_state = 3, .external_lex_state = 5}, + [827] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 12}, + [828] = {.lex_state = 3, .external_lex_state = 5}, + [829] = {.lex_state = 3, .external_lex_state = 3}, + [830] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [831] = {.lex_state = 3, .external_lex_state = 5}, + [832] = {.lex_state = 3, .external_lex_state = 5}, + [833] = {.lex_state = 3, .external_lex_state = 4}, + [834] = {.lex_state = 3, .external_lex_state = 4}, + [835] = {.lex_state = 3, .external_lex_state = 4}, + [836] = {.lex_state = 3, .external_lex_state = 4}, + [837] = {.lex_state = 3, .external_lex_state = 5}, + [838] = {.lex_state = 3, .external_lex_state = 5}, + [839] = {.lex_state = 3, .external_lex_state = 5}, + [840] = {.lex_state = 3, .external_lex_state = 5}, + [841] = {.lex_state = 3, .external_lex_state = 4}, + [842] = {.lex_state = 3, .external_lex_state = 4}, + [843] = {.lex_state = 3, .external_lex_state = 4}, + [844] = {.lex_state = 3, .external_lex_state = 4}, + [845] = {.lex_state = 3, .external_lex_state = 4}, + [846] = {.lex_state = 3, .external_lex_state = 4}, + [847] = {.lex_state = 3, .external_lex_state = 4}, + [848] = {.lex_state = 3, .external_lex_state = 4}, + [849] = {.lex_state = 3, .external_lex_state = 4}, + [850] = {.lex_state = 3, .external_lex_state = 5}, + [851] = {.lex_state = 3, .external_lex_state = 4}, + [852] = {.lex_state = 3, .external_lex_state = 4}, + [853] = {.lex_state = 3, .external_lex_state = 4}, + [854] = {.lex_state = 3, .external_lex_state = 4}, + [855] = {.lex_state = 3, .external_lex_state = 4}, + [856] = {.lex_state = 3, .external_lex_state = 5}, + [857] = {.lex_state = 3, .external_lex_state = 4}, + [858] = {.lex_state = 3, .external_lex_state = 4}, + [859] = {.lex_state = 3, .external_lex_state = 4}, + [860] = {.lex_state = 3, .external_lex_state = 5}, + [861] = {.lex_state = 3, .external_lex_state = 4}, + [862] = {.lex_state = 3, .external_lex_state = 4}, + [863] = {.lex_state = 3, .external_lex_state = 5}, + [864] = {.lex_state = 3, .external_lex_state = 4}, + [865] = {.lex_state = 3, .external_lex_state = 5}, + [866] = {.lex_state = 3, .external_lex_state = 4}, + [867] = {.lex_state = 3, .external_lex_state = 4}, + [868] = {.lex_state = 3, .external_lex_state = 4}, + [869] = {.lex_state = 3, .external_lex_state = 4}, + [870] = {.lex_state = 3, .external_lex_state = 4}, + [871] = {.lex_state = 3, .external_lex_state = 4}, + [872] = {.lex_state = 3, .external_lex_state = 4}, + [873] = {.lex_state = 3, .external_lex_state = 4}, + [874] = {.lex_state = 3, .external_lex_state = 4}, + [875] = {.lex_state = 3, .external_lex_state = 4}, + [876] = {.lex_state = 3, .external_lex_state = 4}, + [877] = {.lex_state = 3, .external_lex_state = 4}, + [878] = {.lex_state = 3, .external_lex_state = 5}, + [879] = {.lex_state = 3, .external_lex_state = 4}, + [880] = {.lex_state = 3, .external_lex_state = 4}, + [881] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [882] = {.lex_state = 3, .external_lex_state = 4}, + [883] = {.lex_state = 3, .external_lex_state = 4}, + [884] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [885] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [886] = {.lex_state = 3, .external_lex_state = 4}, + [887] = {.lex_state = 3, .external_lex_state = 4}, + [888] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [889] = {.lex_state = 3, .external_lex_state = 4}, + [890] = {.lex_state = 3, .external_lex_state = 4}, + [891] = {.lex_state = 3, .external_lex_state = 4}, + [892] = {.lex_state = 3, .external_lex_state = 4}, + [893] = {.lex_state = 3, .external_lex_state = 4}, + [894] = {.lex_state = 3, .external_lex_state = 4}, + [895] = {.lex_state = 3, .external_lex_state = 4}, + [896] = {.lex_state = 3, .external_lex_state = 4}, + [897] = {.lex_state = 3, .external_lex_state = 4}, + [898] = {.lex_state = 3, .external_lex_state = 4}, + [899] = {.lex_state = 3, .external_lex_state = 4}, + [900] = {.lex_state = 3, .external_lex_state = 4}, + [901] = {.lex_state = 3, .external_lex_state = 4}, + [902] = {.lex_state = 3, .external_lex_state = 4}, + [903] = {.lex_state = 3, .external_lex_state = 4}, + [904] = {.lex_state = 3, .external_lex_state = 4}, + [905] = {.lex_state = 3, .external_lex_state = 4}, + [906] = {.lex_state = 3, .external_lex_state = 4}, + [907] = {.lex_state = 3, .external_lex_state = 4}, + [908] = {.lex_state = 3, .external_lex_state = 4}, + [909] = {.lex_state = 3, .external_lex_state = 4}, + [910] = {.lex_state = 3, .external_lex_state = 4}, + [911] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [912] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [913] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [914] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [915] = {.lex_state = 3, .external_lex_state = 4}, + [916] = {.lex_state = 3, .external_lex_state = 4}, + [917] = {.lex_state = 3, .external_lex_state = 4}, + [918] = {.lex_state = 3, .external_lex_state = 4}, + [919] = {.lex_state = 3, .external_lex_state = 4}, + [920] = {.lex_state = 3, .external_lex_state = 4}, + [921] = {.lex_state = 3, .external_lex_state = 4}, + [922] = {.lex_state = 3, .external_lex_state = 4}, + [923] = {.lex_state = 3, .external_lex_state = 4}, + [924] = {.lex_state = 3, .external_lex_state = 4}, + [925] = {.lex_state = 3, .external_lex_state = 4}, + [926] = {.lex_state = 3, .external_lex_state = 4}, + [927] = {.lex_state = 124, .external_lex_state = 5}, + [928] = {.lex_state = 124, .external_lex_state = 4}, + [929] = {.lex_state = 124, .external_lex_state = 4}, + [930] = {.lex_state = 124, .external_lex_state = 5}, + [931] = {.lex_state = 124, .external_lex_state = 4}, + [932] = {.lex_state = 124, .external_lex_state = 4}, + [933] = {.lex_state = 124, .external_lex_state = 4}, + [934] = {.lex_state = 124, .external_lex_state = 4}, + [935] = {.lex_state = 124, .external_lex_state = 4}, + [936] = {.lex_state = 124, .external_lex_state = 5}, + [937] = {.lex_state = 124, .external_lex_state = 4}, + [938] = {.lex_state = 124, .external_lex_state = 4}, + [939] = {.lex_state = 124, .external_lex_state = 4}, + [940] = {.lex_state = 124, .external_lex_state = 4}, + [941] = {.lex_state = 124, .external_lex_state = 4}, + [942] = {.lex_state = 124, .external_lex_state = 4}, + [943] = {.lex_state = 124, .external_lex_state = 4}, + [944] = {.lex_state = 124, .external_lex_state = 4}, + [945] = {.lex_state = 124, .external_lex_state = 4}, + [946] = {.lex_state = 124, .external_lex_state = 4}, + [947] = {.lex_state = 124, .external_lex_state = 4}, + [948] = {.lex_state = 124, .external_lex_state = 4}, + [949] = {.lex_state = 124, .external_lex_state = 4}, + [950] = {.lex_state = 124, .external_lex_state = 4}, + [951] = {.lex_state = 124, .external_lex_state = 4}, + [952] = {.lex_state = 124, .external_lex_state = 4}, + [953] = {.lex_state = 124, .external_lex_state = 4}, + [954] = {.lex_state = 124, .external_lex_state = 4}, + [955] = {.lex_state = 124, .external_lex_state = 4}, + [956] = {.lex_state = 124, .external_lex_state = 4}, + [957] = {.lex_state = 124, .external_lex_state = 4}, + [958] = {.lex_state = 124, .external_lex_state = 4}, + [959] = {.lex_state = 124, .external_lex_state = 4}, + [960] = {.lex_state = 124, .external_lex_state = 4}, + [961] = {.lex_state = 124, .external_lex_state = 4}, + [962] = {.lex_state = 124, .external_lex_state = 4}, + [963] = {.lex_state = 124, .external_lex_state = 4}, + [964] = {.lex_state = 124, .external_lex_state = 4}, + [965] = {.lex_state = 124, .external_lex_state = 4}, + [966] = {.lex_state = 124, .external_lex_state = 4}, + [967] = {.lex_state = 124, .external_lex_state = 4}, + [968] = {.lex_state = 124, .external_lex_state = 4}, + [969] = {.lex_state = 124, .external_lex_state = 4}, + [970] = {.lex_state = 124, .external_lex_state = 4}, + [971] = {.lex_state = 124, .external_lex_state = 4}, + [972] = {.lex_state = 124, .external_lex_state = 4}, + [973] = {.lex_state = 124, .external_lex_state = 4}, + [974] = {.lex_state = 124, .external_lex_state = 4}, + [975] = {.lex_state = 7, .external_lex_state = 4}, + [976] = {.lex_state = 124, .external_lex_state = 4}, + [977] = {.lex_state = 124, .external_lex_state = 4}, + [978] = {.lex_state = 124, .external_lex_state = 4}, + [979] = {.lex_state = 124, .external_lex_state = 4}, + [980] = {.lex_state = 124, .external_lex_state = 4}, + [981] = {.lex_state = 124, .external_lex_state = 4}, + [982] = {.lex_state = 124, .external_lex_state = 4}, + [983] = {.lex_state = 124, .external_lex_state = 4}, + [984] = {.lex_state = 124, .external_lex_state = 4}, + [985] = {.lex_state = 124, .external_lex_state = 4}, + [986] = {.lex_state = 124, .external_lex_state = 4}, + [987] = {.lex_state = 124, .external_lex_state = 4}, + [988] = {.lex_state = 124, .external_lex_state = 4}, + [989] = {.lex_state = 124, .external_lex_state = 4}, + [990] = {.lex_state = 124, .external_lex_state = 4}, + [991] = {.lex_state = 124, .external_lex_state = 4}, + [992] = {.lex_state = 124, .external_lex_state = 4}, + [993] = {.lex_state = 124, .external_lex_state = 4}, + [994] = {.lex_state = 124, .external_lex_state = 4}, + [995] = {.lex_state = 124, .external_lex_state = 4}, + [996] = {.lex_state = 124, .external_lex_state = 4}, + [997] = {.lex_state = 124, .external_lex_state = 5}, + [998] = {.lex_state = 124, .external_lex_state = 5}, + [999] = {.lex_state = 124, .external_lex_state = 4}, + [1000] = {.lex_state = 124, .external_lex_state = 5}, + [1001] = {.lex_state = 124, .external_lex_state = 5}, + [1002] = {.lex_state = 124, .external_lex_state = 5}, + [1003] = {.lex_state = 124, .external_lex_state = 5}, + [1004] = {.lex_state = 124, .external_lex_state = 5}, + [1005] = {.lex_state = 124, .external_lex_state = 5}, + [1006] = {.lex_state = 124, .external_lex_state = 5}, + [1007] = {.lex_state = 124, .external_lex_state = 5}, + [1008] = {.lex_state = 124, .external_lex_state = 5}, + [1009] = {.lex_state = 124, .external_lex_state = 5}, + [1010] = {.lex_state = 124, .external_lex_state = 5}, + [1011] = {.lex_state = 124, .external_lex_state = 5}, + [1012] = {.lex_state = 124, .external_lex_state = 5}, + [1013] = {.lex_state = 124, .external_lex_state = 5}, + [1014] = {.lex_state = 124, .external_lex_state = 5}, + [1015] = {.lex_state = 124, .external_lex_state = 5}, + [1016] = {.lex_state = 124, .external_lex_state = 5}, + [1017] = {.lex_state = 124, .external_lex_state = 5}, + [1018] = {.lex_state = 124, .external_lex_state = 5}, + [1019] = {.lex_state = 124, .external_lex_state = 5}, + [1020] = {.lex_state = 124, .external_lex_state = 5}, + [1021] = {.lex_state = 124, .external_lex_state = 5}, + [1022] = {.lex_state = 124, .external_lex_state = 5}, + [1023] = {.lex_state = 124, .external_lex_state = 5}, + [1024] = {.lex_state = 124, .external_lex_state = 5}, + [1025] = {.lex_state = 124, .external_lex_state = 5}, + [1026] = {.lex_state = 124, .external_lex_state = 5}, + [1027] = {.lex_state = 124, .external_lex_state = 5}, + [1028] = {.lex_state = 124, .external_lex_state = 5}, + [1029] = {.lex_state = 124, .external_lex_state = 5}, + [1030] = {.lex_state = 124, .external_lex_state = 5}, + [1031] = {.lex_state = 124, .external_lex_state = 5}, + [1032] = {.lex_state = 124, .external_lex_state = 5}, + [1033] = {.lex_state = 124, .external_lex_state = 5}, + [1034] = {.lex_state = 124, .external_lex_state = 5}, + [1035] = {.lex_state = 124, .external_lex_state = 5}, + [1036] = {.lex_state = 124, .external_lex_state = 5}, + [1037] = {.lex_state = 124, .external_lex_state = 5}, + [1038] = {.lex_state = 124, .external_lex_state = 5}, + [1039] = {.lex_state = 124, .external_lex_state = 5}, + [1040] = {.lex_state = 124, .external_lex_state = 5}, + [1041] = {.lex_state = 124, .external_lex_state = 5}, + [1042] = {.lex_state = 124, .external_lex_state = 5}, + [1043] = {.lex_state = 124, .external_lex_state = 5}, + [1044] = {.lex_state = 124, .external_lex_state = 5}, + [1045] = {.lex_state = 124, .external_lex_state = 5}, + [1046] = {.lex_state = 124, .external_lex_state = 5}, + [1047] = {.lex_state = 124, .external_lex_state = 5}, + [1048] = {.lex_state = 124, .external_lex_state = 5}, + [1049] = {.lex_state = 124, .external_lex_state = 5}, + [1050] = {.lex_state = 124, .external_lex_state = 5}, + [1051] = {.lex_state = 124, .external_lex_state = 5}, + [1052] = {.lex_state = 124, .external_lex_state = 5}, + [1053] = {.lex_state = 124, .external_lex_state = 5}, + [1054] = {.lex_state = 124, .external_lex_state = 5}, + [1055] = {.lex_state = 124, .external_lex_state = 5}, + [1056] = {.lex_state = 124, .external_lex_state = 5}, + [1057] = {.lex_state = 124, .external_lex_state = 5}, + [1058] = {.lex_state = 124, .external_lex_state = 5}, + [1059] = {.lex_state = 124, .external_lex_state = 5}, + [1060] = {.lex_state = 124, .external_lex_state = 5}, + [1061] = {.lex_state = 124, .external_lex_state = 5}, + [1062] = {.lex_state = 124, .external_lex_state = 5}, + [1063] = {.lex_state = 124, .external_lex_state = 5}, + [1064] = {.lex_state = 124, .external_lex_state = 5}, + [1065] = {.lex_state = 124, .external_lex_state = 5}, + [1066] = {.lex_state = 124, .external_lex_state = 5}, + [1067] = {.lex_state = 124, .external_lex_state = 5}, + [1068] = {.lex_state = 124, .external_lex_state = 5}, + [1069] = {.lex_state = 124, .external_lex_state = 5}, + [1070] = {.lex_state = 124, .external_lex_state = 5}, + [1071] = {.lex_state = 124, .external_lex_state = 5}, + [1072] = {.lex_state = 124, .external_lex_state = 5}, + [1073] = {.lex_state = 124, .external_lex_state = 5}, + [1074] = {.lex_state = 124, .external_lex_state = 5}, + [1075] = {.lex_state = 124, .external_lex_state = 5}, + [1076] = {.lex_state = 124, .external_lex_state = 5}, + [1077] = {.lex_state = 124, .external_lex_state = 5}, + [1078] = {.lex_state = 124, .external_lex_state = 5}, + [1079] = {.lex_state = 124, .external_lex_state = 5}, + [1080] = {.lex_state = 124, .external_lex_state = 5}, + [1081] = {.lex_state = 124, .external_lex_state = 5}, + [1082] = {.lex_state = 124, .external_lex_state = 5}, + [1083] = {.lex_state = 124, .external_lex_state = 5}, + [1084] = {.lex_state = 124, .external_lex_state = 5}, + [1085] = {.lex_state = 7, .external_lex_state = 5}, + [1086] = {.lex_state = 124, .external_lex_state = 5}, + [1087] = {.lex_state = 124, .external_lex_state = 5}, + [1088] = {.lex_state = 124, .external_lex_state = 4}, + [1089] = {.lex_state = 124, .external_lex_state = 5}, + [1090] = {.lex_state = 124, .external_lex_state = 4}, + [1091] = {.lex_state = 124, .external_lex_state = 4}, + [1092] = {.lex_state = 124, .external_lex_state = 5}, + [1093] = {.lex_state = 124, .external_lex_state = 5}, + [1094] = {.lex_state = 124, .external_lex_state = 5}, + [1095] = {.lex_state = 124, .external_lex_state = 5}, + [1096] = {.lex_state = 124, .external_lex_state = 5}, + [1097] = {.lex_state = 124, .external_lex_state = 5}, + [1098] = {.lex_state = 124, .external_lex_state = 5}, + [1099] = {.lex_state = 124, .external_lex_state = 5}, + [1100] = {.lex_state = 7, .external_lex_state = 5}, + [1101] = {.lex_state = 124, .external_lex_state = 5}, + [1102] = {.lex_state = 124, .external_lex_state = 5}, + [1103] = {.lex_state = 124, .external_lex_state = 5}, + [1104] = {.lex_state = 124, .external_lex_state = 5}, + [1105] = {.lex_state = 124, .external_lex_state = 5}, + [1106] = {.lex_state = 124, .external_lex_state = 5}, + [1107] = {.lex_state = 124, .external_lex_state = 5}, + [1108] = {.lex_state = 124, .external_lex_state = 5}, + [1109] = {.lex_state = 124, .external_lex_state = 5}, + [1110] = {.lex_state = 124, .external_lex_state = 5}, + [1111] = {.lex_state = 124, .external_lex_state = 5}, + [1112] = {.lex_state = 124, .external_lex_state = 5}, + [1113] = {.lex_state = 124, .external_lex_state = 5}, + [1114] = {.lex_state = 124, .external_lex_state = 5}, + [1115] = {.lex_state = 124, .external_lex_state = 5}, + [1116] = {.lex_state = 124, .external_lex_state = 5}, + [1117] = {.lex_state = 124, .external_lex_state = 4}, + [1118] = {.lex_state = 124, .external_lex_state = 4}, + [1119] = {.lex_state = 124, .external_lex_state = 4}, + [1120] = {.lex_state = 124, .external_lex_state = 5}, + [1121] = {.lex_state = 124, .external_lex_state = 5}, + [1122] = {.lex_state = 124, .external_lex_state = 5}, + [1123] = {.lex_state = 124, .external_lex_state = 5}, + [1124] = {.lex_state = 124, .external_lex_state = 5}, + [1125] = {.lex_state = 124, .external_lex_state = 5}, + [1126] = {.lex_state = 124, .external_lex_state = 5}, + [1127] = {.lex_state = 124, .external_lex_state = 5}, + [1128] = {.lex_state = 124, .external_lex_state = 5}, + [1129] = {.lex_state = 124, .external_lex_state = 5}, + [1130] = {.lex_state = 124, .external_lex_state = 5}, + [1131] = {.lex_state = 124, .external_lex_state = 5}, + [1132] = {.lex_state = 124, .external_lex_state = 5}, + [1133] = {.lex_state = 124, .external_lex_state = 5}, + [1134] = {.lex_state = 124, .external_lex_state = 5}, + [1135] = {.lex_state = 124, .external_lex_state = 5}, + [1136] = {.lex_state = 124, .external_lex_state = 5}, + [1137] = {.lex_state = 124, .external_lex_state = 5}, + [1138] = {.lex_state = 124, .external_lex_state = 5}, + [1139] = {.lex_state = 124, .external_lex_state = 5}, + [1140] = {.lex_state = 124, .external_lex_state = 5}, + [1141] = {.lex_state = 124, .external_lex_state = 5}, + [1142] = {.lex_state = 124, .external_lex_state = 5}, + [1143] = {.lex_state = 124, .external_lex_state = 5}, + [1144] = {.lex_state = 124, .external_lex_state = 5}, + [1145] = {.lex_state = 124, .external_lex_state = 5}, + [1146] = {.lex_state = 124, .external_lex_state = 5}, + [1147] = {.lex_state = 124, .external_lex_state = 4}, + [1148] = {.lex_state = 124, .external_lex_state = 5}, + [1149] = {.lex_state = 124, .external_lex_state = 5}, + [1150] = {.lex_state = 124, .external_lex_state = 5}, + [1151] = {.lex_state = 124, .external_lex_state = 4}, + [1152] = {.lex_state = 124, .external_lex_state = 4}, + [1153] = {.lex_state = 124, .external_lex_state = 5}, + [1154] = {.lex_state = 124, .external_lex_state = 4}, + [1155] = {.lex_state = 124, .external_lex_state = 4}, + [1156] = {.lex_state = 124, .external_lex_state = 4}, + [1157] = {.lex_state = 124, .external_lex_state = 4}, + [1158] = {.lex_state = 124, .external_lex_state = 4}, + [1159] = {.lex_state = 124, .external_lex_state = 4}, + [1160] = {.lex_state = 124, .external_lex_state = 4}, + [1161] = {.lex_state = 124, .external_lex_state = 4}, + [1162] = {.lex_state = 124, .external_lex_state = 4}, + [1163] = {.lex_state = 124, .external_lex_state = 4}, + [1164] = {.lex_state = 124, .external_lex_state = 4}, + [1165] = {.lex_state = 124, .external_lex_state = 4}, + [1166] = {.lex_state = 124, .external_lex_state = 4}, + [1167] = {.lex_state = 124, .external_lex_state = 4}, + [1168] = {.lex_state = 124, .external_lex_state = 4}, + [1169] = {.lex_state = 124, .external_lex_state = 4}, + [1170] = {.lex_state = 124, .external_lex_state = 4}, + [1171] = {.lex_state = 124, .external_lex_state = 4}, + [1172] = {.lex_state = 124, .external_lex_state = 4}, + [1173] = {.lex_state = 124, .external_lex_state = 4}, + [1174] = {.lex_state = 124, .external_lex_state = 4}, + [1175] = {.lex_state = 124, .external_lex_state = 4}, + [1176] = {.lex_state = 124, .external_lex_state = 4}, + [1177] = {.lex_state = 124, .external_lex_state = 4}, + [1178] = {.lex_state = 124, .external_lex_state = 4}, + [1179] = {.lex_state = 124, .external_lex_state = 4}, + [1180] = {.lex_state = 124, .external_lex_state = 4}, + [1181] = {.lex_state = 124, .external_lex_state = 4}, + [1182] = {.lex_state = 124, .external_lex_state = 4}, + [1183] = {.lex_state = 124, .external_lex_state = 4}, + [1184] = {.lex_state = 124, .external_lex_state = 4}, + [1185] = {.lex_state = 124, .external_lex_state = 4}, + [1186] = {.lex_state = 124, .external_lex_state = 4}, + [1187] = {.lex_state = 124, .external_lex_state = 4}, + [1188] = {.lex_state = 124, .external_lex_state = 4}, + [1189] = {.lex_state = 124, .external_lex_state = 4}, + [1190] = {.lex_state = 124, .external_lex_state = 4}, + [1191] = {.lex_state = 124, .external_lex_state = 4}, + [1192] = {.lex_state = 124, .external_lex_state = 4}, + [1193] = {.lex_state = 124, .external_lex_state = 4}, + [1194] = {.lex_state = 124, .external_lex_state = 5}, + [1195] = {.lex_state = 124, .external_lex_state = 4}, + [1196] = {.lex_state = 124, .external_lex_state = 4}, + [1197] = {.lex_state = 124, .external_lex_state = 4}, + [1198] = {.lex_state = 124, .external_lex_state = 5}, + [1199] = {.lex_state = 124, .external_lex_state = 4}, + [1200] = {.lex_state = 124, .external_lex_state = 4}, + [1201] = {.lex_state = 124, .external_lex_state = 4}, + [1202] = {.lex_state = 124, .external_lex_state = 4}, + [1203] = {.lex_state = 124, .external_lex_state = 4}, + [1204] = {.lex_state = 124, .external_lex_state = 4}, + [1205] = {.lex_state = 124, .external_lex_state = 5}, + [1206] = {.lex_state = 124, .external_lex_state = 4}, + [1207] = {.lex_state = 124, .external_lex_state = 4}, + [1208] = {.lex_state = 124, .external_lex_state = 4}, + [1209] = {.lex_state = 124, .external_lex_state = 4}, + [1210] = {.lex_state = 124, .external_lex_state = 4}, + [1211] = {.lex_state = 124, .external_lex_state = 4}, + [1212] = {.lex_state = 124, .external_lex_state = 4}, + [1213] = {.lex_state = 124, .external_lex_state = 4}, + [1214] = {.lex_state = 124, .external_lex_state = 4}, + [1215] = {.lex_state = 124, .external_lex_state = 4}, + [1216] = {.lex_state = 124, .external_lex_state = 4}, + [1217] = {.lex_state = 124, .external_lex_state = 5}, + [1218] = {.lex_state = 124, .external_lex_state = 4}, + [1219] = {.lex_state = 124, .external_lex_state = 4}, + [1220] = {.lex_state = 124, .external_lex_state = 5}, + [1221] = {.lex_state = 124, .external_lex_state = 4}, + [1222] = {.lex_state = 124, .external_lex_state = 4}, + [1223] = {.lex_state = 124, .external_lex_state = 4}, + [1224] = {.lex_state = 124, .external_lex_state = 5}, + [1225] = {.lex_state = 124, .external_lex_state = 4}, + [1226] = {.lex_state = 124, .external_lex_state = 5}, + [1227] = {.lex_state = 124, .external_lex_state = 4}, + [1228] = {.lex_state = 124, .external_lex_state = 4}, + [1229] = {.lex_state = 124, .external_lex_state = 4}, + [1230] = {.lex_state = 124, .external_lex_state = 5}, + [1231] = {.lex_state = 124, .external_lex_state = 5}, + [1232] = {.lex_state = 124, .external_lex_state = 5}, + [1233] = {.lex_state = 124, .external_lex_state = 4}, + [1234] = {.lex_state = 124, .external_lex_state = 4}, + [1235] = {.lex_state = 124, .external_lex_state = 4}, + [1236] = {.lex_state = 124, .external_lex_state = 4}, + [1237] = {.lex_state = 124, .external_lex_state = 4}, + [1238] = {.lex_state = 124, .external_lex_state = 4}, + [1239] = {.lex_state = 124, .external_lex_state = 4}, + [1240] = {.lex_state = 124, .external_lex_state = 4}, + [1241] = {.lex_state = 124, .external_lex_state = 5}, + [1242] = {.lex_state = 124, .external_lex_state = 4}, + [1243] = {.lex_state = 124, .external_lex_state = 4}, + [1244] = {.lex_state = 124, .external_lex_state = 5}, + [1245] = {.lex_state = 124, .external_lex_state = 4}, + [1246] = {.lex_state = 124, .external_lex_state = 5}, + [1247] = {.lex_state = 124, .external_lex_state = 5}, + [1248] = {.lex_state = 124, .external_lex_state = 5}, + [1249] = {.lex_state = 124, .external_lex_state = 5}, + [1250] = {.lex_state = 124, .external_lex_state = 5}, + [1251] = {.lex_state = 124, .external_lex_state = 5}, + [1252] = {.lex_state = 124, .external_lex_state = 4}, + [1253] = {.lex_state = 124, .external_lex_state = 4}, + [1254] = {.lex_state = 124, .external_lex_state = 4}, + [1255] = {.lex_state = 124, .external_lex_state = 4}, + [1256] = {.lex_state = 124, .external_lex_state = 4}, + [1257] = {.lex_state = 124, .external_lex_state = 4}, + [1258] = {.lex_state = 124, .external_lex_state = 4}, + [1259] = {.lex_state = 124, .external_lex_state = 5}, + [1260] = {.lex_state = 124, .external_lex_state = 4}, + [1261] = {.lex_state = 124, .external_lex_state = 5}, + [1262] = {.lex_state = 124, .external_lex_state = 4}, + [1263] = {.lex_state = 124, .external_lex_state = 4}, + [1264] = {.lex_state = 124, .external_lex_state = 4}, + [1265] = {.lex_state = 124, .external_lex_state = 4}, + [1266] = {.lex_state = 124, .external_lex_state = 5}, + [1267] = {.lex_state = 124, .external_lex_state = 4}, + [1268] = {.lex_state = 124, .external_lex_state = 4}, + [1269] = {.lex_state = 124, .external_lex_state = 4}, + [1270] = {.lex_state = 124, .external_lex_state = 4}, + [1271] = {.lex_state = 124, .external_lex_state = 4}, + [1272] = {.lex_state = 124, .external_lex_state = 4}, + [1273] = {.lex_state = 124, .external_lex_state = 4}, + [1274] = {.lex_state = 124, .external_lex_state = 4}, + [1275] = {.lex_state = 124, .external_lex_state = 4}, + [1276] = {.lex_state = 124, .external_lex_state = 4}, + [1277] = {.lex_state = 124, .external_lex_state = 4}, + [1278] = {.lex_state = 124, .external_lex_state = 4}, + [1279] = {.lex_state = 124, .external_lex_state = 4}, + [1280] = {.lex_state = 124, .external_lex_state = 4}, + [1281] = {.lex_state = 124, .external_lex_state = 4}, + [1282] = {.lex_state = 124, .external_lex_state = 4}, + [1283] = {.lex_state = 124, .external_lex_state = 4}, + [1284] = {.lex_state = 124, .external_lex_state = 4}, + [1285] = {.lex_state = 124, .external_lex_state = 4}, + [1286] = {.lex_state = 124, .external_lex_state = 4}, + [1287] = {.lex_state = 124, .external_lex_state = 4}, + [1288] = {.lex_state = 124, .external_lex_state = 4}, + [1289] = {.lex_state = 124, .external_lex_state = 4}, + [1290] = {.lex_state = 124, .external_lex_state = 4}, + [1291] = {.lex_state = 124, .external_lex_state = 4}, + [1292] = {.lex_state = 124, .external_lex_state = 4}, + [1293] = {.lex_state = 124, .external_lex_state = 4}, + [1294] = {.lex_state = 124, .external_lex_state = 4}, + [1295] = {.lex_state = 124, .external_lex_state = 4}, + [1296] = {.lex_state = 124, .external_lex_state = 4}, + [1297] = {.lex_state = 124, .external_lex_state = 4}, + [1298] = {.lex_state = 124, .external_lex_state = 4}, + [1299] = {.lex_state = 124, .external_lex_state = 4}, + [1300] = {.lex_state = 124, .external_lex_state = 4}, + [1301] = {.lex_state = 124, .external_lex_state = 4}, + [1302] = {.lex_state = 124, .external_lex_state = 4}, + [1303] = {.lex_state = 124, .external_lex_state = 4}, + [1304] = {.lex_state = 124, .external_lex_state = 4}, + [1305] = {.lex_state = 124, .external_lex_state = 4}, + [1306] = {.lex_state = 124, .external_lex_state = 4}, + [1307] = {.lex_state = 124, .external_lex_state = 4}, + [1308] = {.lex_state = 124, .external_lex_state = 5}, + [1309] = {.lex_state = 124, .external_lex_state = 5}, + [1310] = {.lex_state = 124, .external_lex_state = 5}, + [1311] = {.lex_state = 124, .external_lex_state = 5}, + [1312] = {.lex_state = 124, .external_lex_state = 5}, + [1313] = {.lex_state = 124, .external_lex_state = 5}, + [1314] = {.lex_state = 124, .external_lex_state = 5}, + [1315] = {.lex_state = 124, .external_lex_state = 4}, + [1316] = {.lex_state = 124, .external_lex_state = 5}, + [1317] = {.lex_state = 124, .external_lex_state = 4}, + [1318] = {.lex_state = 124, .external_lex_state = 4}, + [1319] = {.lex_state = 124, .external_lex_state = 4}, + [1320] = {.lex_state = 124, .external_lex_state = 4}, + [1321] = {.lex_state = 124, .external_lex_state = 4}, + [1322] = {.lex_state = 124, .external_lex_state = 4}, + [1323] = {.lex_state = 124, .external_lex_state = 4}, + [1324] = {.lex_state = 124, .external_lex_state = 4}, + [1325] = {.lex_state = 124, .external_lex_state = 5}, + [1326] = {.lex_state = 124, .external_lex_state = 5}, + [1327] = {.lex_state = 124, .external_lex_state = 4}, + [1328] = {.lex_state = 124, .external_lex_state = 5}, + [1329] = {.lex_state = 124, .external_lex_state = 4}, + [1330] = {.lex_state = 124, .external_lex_state = 4}, + [1331] = {.lex_state = 124, .external_lex_state = 4}, + [1332] = {.lex_state = 124, .external_lex_state = 5}, + [1333] = {.lex_state = 124, .external_lex_state = 4}, + [1334] = {.lex_state = 124, .external_lex_state = 4}, + [1335] = {.lex_state = 124, .external_lex_state = 5}, + [1336] = {.lex_state = 124, .external_lex_state = 5}, + [1337] = {.lex_state = 124, .external_lex_state = 4}, + [1338] = {.lex_state = 124, .external_lex_state = 5}, + [1339] = {.lex_state = 124, .external_lex_state = 5}, + [1340] = {.lex_state = 124, .external_lex_state = 4}, + [1341] = {.lex_state = 124, .external_lex_state = 4}, + [1342] = {.lex_state = 124, .external_lex_state = 4}, + [1343] = {.lex_state = 124, .external_lex_state = 4}, + [1344] = {.lex_state = 124, .external_lex_state = 4}, + [1345] = {.lex_state = 124, .external_lex_state = 4}, + [1346] = {.lex_state = 124, .external_lex_state = 4}, + [1347] = {.lex_state = 124, .external_lex_state = 4}, + [1348] = {.lex_state = 124, .external_lex_state = 4}, + [1349] = {.lex_state = 124, .external_lex_state = 4}, + [1350] = {.lex_state = 124, .external_lex_state = 4}, + [1351] = {.lex_state = 124, .external_lex_state = 4}, + [1352] = {.lex_state = 124, .external_lex_state = 4}, + [1353] = {.lex_state = 124, .external_lex_state = 4}, + [1354] = {.lex_state = 124, .external_lex_state = 4}, + [1355] = {.lex_state = 124, .external_lex_state = 4}, + [1356] = {.lex_state = 124, .external_lex_state = 4}, + [1357] = {.lex_state = 124, .external_lex_state = 4}, + [1358] = {.lex_state = 7, .external_lex_state = 4}, + [1359] = {.lex_state = 124, .external_lex_state = 4}, + [1360] = {.lex_state = 124, .external_lex_state = 4}, + [1361] = {.lex_state = 124, .external_lex_state = 4}, + [1362] = {.lex_state = 124, .external_lex_state = 4}, + [1363] = {.lex_state = 124, .external_lex_state = 4}, + [1364] = {.lex_state = 124, .external_lex_state = 4}, + [1365] = {.lex_state = 124, .external_lex_state = 4}, + [1366] = {.lex_state = 124, .external_lex_state = 4}, + [1367] = {.lex_state = 124, .external_lex_state = 4}, + [1368] = {.lex_state = 124, .external_lex_state = 4}, + [1369] = {.lex_state = 124, .external_lex_state = 4}, + [1370] = {.lex_state = 124, .external_lex_state = 4}, + [1371] = {.lex_state = 124, .external_lex_state = 4}, + [1372] = {.lex_state = 124, .external_lex_state = 4}, + [1373] = {.lex_state = 124, .external_lex_state = 4}, + [1374] = {.lex_state = 124, .external_lex_state = 4}, + [1375] = {.lex_state = 124, .external_lex_state = 4}, + [1376] = {.lex_state = 124, .external_lex_state = 4}, + [1377] = {.lex_state = 124, .external_lex_state = 4}, + [1378] = {.lex_state = 124, .external_lex_state = 4}, + [1379] = {.lex_state = 124, .external_lex_state = 4}, + [1380] = {.lex_state = 124, .external_lex_state = 4}, + [1381] = {.lex_state = 124, .external_lex_state = 4}, + [1382] = {.lex_state = 124, .external_lex_state = 4}, + [1383] = {.lex_state = 124, .external_lex_state = 4}, + [1384] = {.lex_state = 124, .external_lex_state = 4}, + [1385] = {.lex_state = 124, .external_lex_state = 4}, + [1386] = {.lex_state = 124, .external_lex_state = 4}, + [1387] = {.lex_state = 124, .external_lex_state = 4}, + [1388] = {.lex_state = 124, .external_lex_state = 4}, + [1389] = {.lex_state = 124, .external_lex_state = 4}, + [1390] = {.lex_state = 124, .external_lex_state = 4}, + [1391] = {.lex_state = 124, .external_lex_state = 4}, + [1392] = {.lex_state = 124, .external_lex_state = 4}, + [1393] = {.lex_state = 124, .external_lex_state = 4}, + [1394] = {.lex_state = 124, .external_lex_state = 4}, + [1395] = {.lex_state = 124, .external_lex_state = 4}, + [1396] = {.lex_state = 124, .external_lex_state = 4}, + [1397] = {.lex_state = 124, .external_lex_state = 4}, + [1398] = {.lex_state = 124, .external_lex_state = 4}, + [1399] = {.lex_state = 124, .external_lex_state = 4}, + [1400] = {.lex_state = 124, .external_lex_state = 4}, + [1401] = {.lex_state = 124, .external_lex_state = 4}, + [1402] = {.lex_state = 124, .external_lex_state = 4}, + [1403] = {.lex_state = 124, .external_lex_state = 4}, + [1404] = {.lex_state = 124, .external_lex_state = 4}, + [1405] = {.lex_state = 124, .external_lex_state = 4}, + [1406] = {.lex_state = 124, .external_lex_state = 4}, + [1407] = {.lex_state = 124, .external_lex_state = 4}, + [1408] = {.lex_state = 124, .external_lex_state = 4}, + [1409] = {.lex_state = 124, .external_lex_state = 4}, + [1410] = {.lex_state = 124, .external_lex_state = 4}, + [1411] = {.lex_state = 124, .external_lex_state = 4}, + [1412] = {.lex_state = 124, .external_lex_state = 4}, + [1413] = {.lex_state = 124, .external_lex_state = 4}, + [1414] = {.lex_state = 124, .external_lex_state = 4}, + [1415] = {.lex_state = 124, .external_lex_state = 4}, + [1416] = {.lex_state = 124, .external_lex_state = 4}, + [1417] = {.lex_state = 124, .external_lex_state = 4}, + [1418] = {.lex_state = 124, .external_lex_state = 4}, + [1419] = {.lex_state = 124, .external_lex_state = 4}, + [1420] = {.lex_state = 124, .external_lex_state = 4}, + [1421] = {.lex_state = 124, .external_lex_state = 4}, + [1422] = {.lex_state = 124, .external_lex_state = 4}, + [1423] = {.lex_state = 124, .external_lex_state = 4}, + [1424] = {.lex_state = 124, .external_lex_state = 4}, + [1425] = {.lex_state = 124, .external_lex_state = 4}, + [1426] = {.lex_state = 124, .external_lex_state = 4}, + [1427] = {.lex_state = 124, .external_lex_state = 4}, + [1428] = {.lex_state = 124, .external_lex_state = 4}, + [1429] = {.lex_state = 124, .external_lex_state = 4}, + [1430] = {.lex_state = 124, .external_lex_state = 4}, + [1431] = {.lex_state = 124, .external_lex_state = 4}, + [1432] = {.lex_state = 124, .external_lex_state = 4}, + [1433] = {.lex_state = 124, .external_lex_state = 4}, + [1434] = {.lex_state = 124, .external_lex_state = 4}, + [1435] = {.lex_state = 124, .external_lex_state = 4}, + [1436] = {.lex_state = 124, .external_lex_state = 4}, + [1437] = {.lex_state = 124, .external_lex_state = 4}, + [1438] = {.lex_state = 124, .external_lex_state = 4}, + [1439] = {.lex_state = 124, .external_lex_state = 4}, + [1440] = {.lex_state = 124, .external_lex_state = 4}, + [1441] = {.lex_state = 124, .external_lex_state = 4}, + [1442] = {.lex_state = 124, .external_lex_state = 4}, + [1443] = {.lex_state = 124, .external_lex_state = 4}, + [1444] = {.lex_state = 124, .external_lex_state = 4}, + [1445] = {.lex_state = 124, .external_lex_state = 4}, + [1446] = {.lex_state = 124, .external_lex_state = 4}, + [1447] = {.lex_state = 124, .external_lex_state = 4}, + [1448] = {.lex_state = 124, .external_lex_state = 4}, + [1449] = {.lex_state = 124, .external_lex_state = 4}, + [1450] = {.lex_state = 124, .external_lex_state = 4}, + [1451] = {.lex_state = 124, .external_lex_state = 4}, + [1452] = {.lex_state = 124, .external_lex_state = 4}, + [1453] = {.lex_state = 124, .external_lex_state = 4}, + [1454] = {.lex_state = 124, .external_lex_state = 5}, + [1455] = {.lex_state = 124, .external_lex_state = 4}, + [1456] = {.lex_state = 124, .external_lex_state = 4}, + [1457] = {.lex_state = 124, .external_lex_state = 4}, + [1458] = {.lex_state = 124, .external_lex_state = 4}, + [1459] = {.lex_state = 124, .external_lex_state = 4}, + [1460] = {.lex_state = 124, .external_lex_state = 4}, + [1461] = {.lex_state = 124, .external_lex_state = 4}, + [1462] = {.lex_state = 124, .external_lex_state = 4}, + [1463] = {.lex_state = 124, .external_lex_state = 4}, + [1464] = {.lex_state = 124, .external_lex_state = 4}, + [1465] = {.lex_state = 124, .external_lex_state = 4}, + [1466] = {.lex_state = 124, .external_lex_state = 5}, + [1467] = {.lex_state = 124, .external_lex_state = 4}, + [1468] = {.lex_state = 124, .external_lex_state = 4}, + [1469] = {.lex_state = 124, .external_lex_state = 4}, + [1470] = {.lex_state = 124, .external_lex_state = 4}, + [1471] = {.lex_state = 124, .external_lex_state = 4}, + [1472] = {.lex_state = 124, .external_lex_state = 4}, + [1473] = {.lex_state = 124, .external_lex_state = 4}, + [1474] = {.lex_state = 124, .external_lex_state = 4}, + [1475] = {.lex_state = 124, .external_lex_state = 4}, + [1476] = {.lex_state = 124, .external_lex_state = 4}, + [1477] = {.lex_state = 124, .external_lex_state = 4}, + [1478] = {.lex_state = 124, .external_lex_state = 4}, + [1479] = {.lex_state = 124, .external_lex_state = 4}, + [1480] = {.lex_state = 124, .external_lex_state = 4}, + [1481] = {.lex_state = 124, .external_lex_state = 4}, + [1482] = {.lex_state = 124, .external_lex_state = 4}, + [1483] = {.lex_state = 5, .external_lex_state = 2}, + [1484] = {.lex_state = 124, .external_lex_state = 4}, + [1485] = {.lex_state = 124, .external_lex_state = 4}, + [1486] = {.lex_state = 5, .external_lex_state = 2}, + [1487] = {.lex_state = 124, .external_lex_state = 4}, + [1488] = {.lex_state = 124, .external_lex_state = 4}, + [1489] = {.lex_state = 5, .external_lex_state = 2}, + [1490] = {.lex_state = 124, .external_lex_state = 4}, + [1491] = {.lex_state = 124, .external_lex_state = 4}, + [1492] = {.lex_state = 124, .external_lex_state = 4}, + [1493] = {.lex_state = 124, .external_lex_state = 4}, + [1494] = {.lex_state = 124, .external_lex_state = 4}, + [1495] = {.lex_state = 5, .external_lex_state = 2}, + [1496] = {.lex_state = 124, .external_lex_state = 4}, + [1497] = {.lex_state = 124, .external_lex_state = 4}, + [1498] = {.lex_state = 124, .external_lex_state = 4}, + [1499] = {.lex_state = 124, .external_lex_state = 4}, + [1500] = {.lex_state = 124, .external_lex_state = 4}, + [1501] = {.lex_state = 124, .external_lex_state = 4}, + [1502] = {.lex_state = 124, .external_lex_state = 4}, + [1503] = {.lex_state = 124, .external_lex_state = 4}, + [1504] = {.lex_state = 124, .external_lex_state = 4}, + [1505] = {.lex_state = 124, .external_lex_state = 4}, + [1506] = {.lex_state = 124, .external_lex_state = 4}, + [1507] = {.lex_state = 124, .external_lex_state = 4}, + [1508] = {.lex_state = 124, .external_lex_state = 4}, + [1509] = {.lex_state = 124, .external_lex_state = 4}, + [1510] = {.lex_state = 124, .external_lex_state = 4}, + [1511] = {.lex_state = 124, .external_lex_state = 4}, + [1512] = {.lex_state = 124, .external_lex_state = 4}, + [1513] = {.lex_state = 124, .external_lex_state = 4}, + [1514] = {.lex_state = 124, .external_lex_state = 4}, + [1515] = {.lex_state = 124, .external_lex_state = 4}, + [1516] = {.lex_state = 124, .external_lex_state = 4}, + [1517] = {.lex_state = 124, .external_lex_state = 4}, + [1518] = {.lex_state = 124, .external_lex_state = 4}, + [1519] = {.lex_state = 124, .external_lex_state = 4}, + [1520] = {.lex_state = 124, .external_lex_state = 4}, + [1521] = {.lex_state = 124, .external_lex_state = 4}, + [1522] = {.lex_state = 124, .external_lex_state = 4}, + [1523] = {.lex_state = 124, .external_lex_state = 4}, + [1524] = {.lex_state = 124, .external_lex_state = 4}, + [1525] = {.lex_state = 124, .external_lex_state = 4}, + [1526] = {.lex_state = 124, .external_lex_state = 4}, + [1527] = {.lex_state = 124, .external_lex_state = 4}, + [1528] = {.lex_state = 124, .external_lex_state = 4}, + [1529] = {.lex_state = 124, .external_lex_state = 4}, + [1530] = {.lex_state = 124, .external_lex_state = 4}, + [1531] = {.lex_state = 124, .external_lex_state = 4}, + [1532] = {.lex_state = 124, .external_lex_state = 4}, + [1533] = {.lex_state = 124, .external_lex_state = 4}, + [1534] = {.lex_state = 124, .external_lex_state = 4}, + [1535] = {.lex_state = 124, .external_lex_state = 4}, + [1536] = {.lex_state = 124, .external_lex_state = 4}, + [1537] = {.lex_state = 124, .external_lex_state = 4}, + [1538] = {.lex_state = 124, .external_lex_state = 4}, + [1539] = {.lex_state = 124, .external_lex_state = 4}, + [1540] = {.lex_state = 124, .external_lex_state = 4}, + [1541] = {.lex_state = 124, .external_lex_state = 4}, + [1542] = {.lex_state = 124, .external_lex_state = 4}, + [1543] = {.lex_state = 124, .external_lex_state = 4}, + [1544] = {.lex_state = 124, .external_lex_state = 4}, + [1545] = {.lex_state = 5, .external_lex_state = 2}, + [1546] = {.lex_state = 124, .external_lex_state = 4}, + [1547] = {.lex_state = 5, .external_lex_state = 2}, + [1548] = {.lex_state = 124, .external_lex_state = 4}, + [1549] = {.lex_state = 124, .external_lex_state = 4}, + [1550] = {.lex_state = 124, .external_lex_state = 4}, + [1551] = {.lex_state = 124, .external_lex_state = 4}, + [1552] = {.lex_state = 124, .external_lex_state = 4}, + [1553] = {.lex_state = 124, .external_lex_state = 4}, + [1554] = {.lex_state = 124, .external_lex_state = 4}, + [1555] = {.lex_state = 124, .external_lex_state = 4}, + [1556] = {.lex_state = 124, .external_lex_state = 4}, + [1557] = {.lex_state = 124, .external_lex_state = 4}, + [1558] = {.lex_state = 124, .external_lex_state = 4}, + [1559] = {.lex_state = 124, .external_lex_state = 4}, + [1560] = {.lex_state = 124, .external_lex_state = 4}, + [1561] = {.lex_state = 124, .external_lex_state = 4}, + [1562] = {.lex_state = 124, .external_lex_state = 4}, + [1563] = {.lex_state = 124, .external_lex_state = 4}, + [1564] = {.lex_state = 124, .external_lex_state = 4}, + [1565] = {.lex_state = 124, .external_lex_state = 4}, + [1566] = {.lex_state = 124, .external_lex_state = 4}, + [1567] = {.lex_state = 124, .external_lex_state = 4}, + [1568] = {.lex_state = 5, .external_lex_state = 2}, + [1569] = {.lex_state = 5, .external_lex_state = 2}, + [1570] = {.lex_state = 5, .external_lex_state = 2}, + [1571] = {.lex_state = 5, .external_lex_state = 2}, + [1572] = {.lex_state = 5, .external_lex_state = 2}, + [1573] = {.lex_state = 5, .external_lex_state = 2}, + [1574] = {.lex_state = 5, .external_lex_state = 2}, + [1575] = {.lex_state = 5, .external_lex_state = 2}, + [1576] = {.lex_state = 5, .external_lex_state = 2}, + [1577] = {.lex_state = 5, .external_lex_state = 2}, + [1578] = {.lex_state = 5, .external_lex_state = 2}, [1579] = {.lex_state = 125, .external_lex_state = 2}, [1580] = {.lex_state = 125, .external_lex_state = 2}, [1581] = {.lex_state = 125, .external_lex_state = 2}, - [1582] = {.lex_state = 5, .external_lex_state = 2}, - [1583] = {.lex_state = 125, .external_lex_state = 2}, + [1582] = {.lex_state = 125, .external_lex_state = 2}, + [1583] = {.lex_state = 125, .external_lex_state = 7}, [1584] = {.lex_state = 125, .external_lex_state = 2}, - [1585] = {.lex_state = 125, .external_lex_state = 2}, - [1586] = {.lex_state = 125, .external_lex_state = 2}, - [1587] = {.lex_state = 125, .external_lex_state = 2}, + [1585] = {.lex_state = 5, .external_lex_state = 2}, + [1586] = {.lex_state = 5, .external_lex_state = 2}, + [1587] = {.lex_state = 9, .external_lex_state = 2}, [1588] = {.lex_state = 125, .external_lex_state = 2}, [1589] = {.lex_state = 125, .external_lex_state = 2}, - [1590] = {.lex_state = 125, .external_lex_state = 2}, + [1590] = {.lex_state = 9, .external_lex_state = 2}, [1591] = {.lex_state = 125, .external_lex_state = 2}, - [1592] = {.lex_state = 125, .external_lex_state = 2}, - [1593] = {.lex_state = 125, .external_lex_state = 2}, - [1594] = {.lex_state = 125, .external_lex_state = 2}, + [1592] = {.lex_state = 5, .external_lex_state = 2}, + [1593] = {.lex_state = 5, .external_lex_state = 2}, + [1594] = {.lex_state = 5, .external_lex_state = 2}, [1595] = {.lex_state = 125, .external_lex_state = 2}, - [1596] = {.lex_state = 125, .external_lex_state = 2}, - [1597] = {.lex_state = 125, .external_lex_state = 2}, - [1598] = {.lex_state = 125, .external_lex_state = 2}, - [1599] = {.lex_state = 125, .external_lex_state = 2}, - [1600] = {.lex_state = 125, .external_lex_state = 2}, - [1601] = {.lex_state = 125, .external_lex_state = 2}, - [1602] = {.lex_state = 125, .external_lex_state = 2}, + [1596] = {.lex_state = 5, .external_lex_state = 7}, + [1597] = {.lex_state = 5, .external_lex_state = 2}, + [1598] = {.lex_state = 5, .external_lex_state = 2}, + [1599] = {.lex_state = 5, .external_lex_state = 2}, + [1600] = {.lex_state = 5, .external_lex_state = 2}, + [1601] = {.lex_state = 5, .external_lex_state = 2}, + [1602] = {.lex_state = 5, .external_lex_state = 2}, [1603] = {.lex_state = 125, .external_lex_state = 2}, - [1604] = {.lex_state = 125, .external_lex_state = 2}, + [1604] = {.lex_state = 5, .external_lex_state = 2}, [1605] = {.lex_state = 125, .external_lex_state = 2}, - [1606] = {.lex_state = 125, .external_lex_state = 2}, - [1607] = {.lex_state = 125, .external_lex_state = 2}, - [1608] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1609] = {.lex_state = 125, .external_lex_state = 2}, - [1610] = {.lex_state = 125, .external_lex_state = 2}, - [1611] = {.lex_state = 125, .external_lex_state = 2}, - [1612] = {.lex_state = 125, .external_lex_state = 2}, - [1613] = {.lex_state = 125, .external_lex_state = 2}, - [1614] = {.lex_state = 125, .external_lex_state = 2}, - [1615] = {.lex_state = 125, .external_lex_state = 2}, - [1616] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1617] = {.lex_state = 125, .external_lex_state = 2}, - [1618] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1619] = {.lex_state = 125, .external_lex_state = 2}, - [1620] = {.lex_state = 125, .external_lex_state = 2}, - [1621] = {.lex_state = 125, .external_lex_state = 2}, - [1622] = {.lex_state = 32, .external_lex_state = 2}, - [1623] = {.lex_state = 125, .external_lex_state = 2}, - [1624] = {.lex_state = 125, .external_lex_state = 2}, + [1606] = {.lex_state = 5, .external_lex_state = 2}, + [1607] = {.lex_state = 5, .external_lex_state = 2}, + [1608] = {.lex_state = 125, .external_lex_state = 2}, + [1609] = {.lex_state = 5, .external_lex_state = 2}, + [1610] = {.lex_state = 5, .external_lex_state = 2}, + [1611] = {.lex_state = 5, .external_lex_state = 2}, + [1612] = {.lex_state = 5, .external_lex_state = 2}, + [1613] = {.lex_state = 5, .external_lex_state = 2}, + [1614] = {.lex_state = 5, .external_lex_state = 2}, + [1615] = {.lex_state = 5, .external_lex_state = 2}, + [1616] = {.lex_state = 5, .external_lex_state = 2}, + [1617] = {.lex_state = 5, .external_lex_state = 7}, + [1618] = {.lex_state = 125, .external_lex_state = 2}, + [1619] = {.lex_state = 5, .external_lex_state = 2}, + [1620] = {.lex_state = 5, .external_lex_state = 2}, + [1621] = {.lex_state = 5, .external_lex_state = 2}, + [1622] = {.lex_state = 5, .external_lex_state = 2}, + [1623] = {.lex_state = 5, .external_lex_state = 2}, + [1624] = {.lex_state = 5, .external_lex_state = 2}, [1625] = {.lex_state = 125, .external_lex_state = 2}, - [1626] = {.lex_state = 125, .external_lex_state = 2}, - [1627] = {.lex_state = 125, .external_lex_state = 2}, - [1628] = {.lex_state = 125, .external_lex_state = 2}, - [1629] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1630] = {.lex_state = 32, .external_lex_state = 2}, - [1631] = {.lex_state = 125, .external_lex_state = 2}, - [1632] = {.lex_state = 125, .external_lex_state = 2}, - [1633] = {.lex_state = 125, .external_lex_state = 2}, - [1634] = {.lex_state = 125, .external_lex_state = 2}, - [1635] = {.lex_state = 2, .external_lex_state = 9}, - [1636] = {.lex_state = 32, .external_lex_state = 2}, - [1637] = {.lex_state = 125, .external_lex_state = 2}, - [1638] = {.lex_state = 125, .external_lex_state = 2}, - [1639] = {.lex_state = 125, .external_lex_state = 2}, - [1640] = {.lex_state = 125, .external_lex_state = 2}, - [1641] = {.lex_state = 125, .external_lex_state = 2}, - [1642] = {.lex_state = 125, .external_lex_state = 2}, - [1643] = {.lex_state = 125, .external_lex_state = 2}, - [1644] = {.lex_state = 125, .external_lex_state = 2}, - [1645] = {.lex_state = 125, .external_lex_state = 2}, - [1646] = {.lex_state = 125, .external_lex_state = 2}, - [1647] = {.lex_state = 125, .external_lex_state = 2}, - [1648] = {.lex_state = 125, .external_lex_state = 2}, - [1649] = {.lex_state = 125, .external_lex_state = 2}, - [1650] = {.lex_state = 125, .external_lex_state = 2}, - [1651] = {.lex_state = 125, .external_lex_state = 2}, - [1652] = {.lex_state = 125, .external_lex_state = 2}, - [1653] = {.lex_state = 125, .external_lex_state = 2}, + [1626] = {.lex_state = 5, .external_lex_state = 2}, + [1627] = {.lex_state = 5, .external_lex_state = 2}, + [1628] = {.lex_state = 5, .external_lex_state = 2}, + [1629] = {.lex_state = 3, .external_lex_state = 2}, + [1630] = {.lex_state = 3, .external_lex_state = 2}, + [1631] = {.lex_state = 3, .external_lex_state = 2}, + [1632] = {.lex_state = 3, .external_lex_state = 2}, + [1633] = {.lex_state = 3, .external_lex_state = 2}, + [1634] = {.lex_state = 5, .external_lex_state = 2}, + [1635] = {.lex_state = 3, .external_lex_state = 2}, + [1636] = {.lex_state = 5, .external_lex_state = 2}, + [1637] = {.lex_state = 3, .external_lex_state = 2}, + [1638] = {.lex_state = 5, .external_lex_state = 2}, + [1639] = {.lex_state = 5, .external_lex_state = 2}, + [1640] = {.lex_state = 3, .external_lex_state = 2}, + [1641] = {.lex_state = 3, .external_lex_state = 2}, + [1642] = {.lex_state = 5, .external_lex_state = 2}, + [1643] = {.lex_state = 3, .external_lex_state = 2}, + [1644] = {.lex_state = 3, .external_lex_state = 2}, + [1645] = {.lex_state = 5, .external_lex_state = 2}, + [1646] = {.lex_state = 3, .external_lex_state = 2}, + [1647] = {.lex_state = 5, .external_lex_state = 2}, + [1648] = {.lex_state = 3, .external_lex_state = 2}, + [1649] = {.lex_state = 3, .external_lex_state = 2}, + [1650] = {.lex_state = 3, .external_lex_state = 2}, + [1651] = {.lex_state = 5, .external_lex_state = 2}, + [1652] = {.lex_state = 3, .external_lex_state = 2}, + [1653] = {.lex_state = 3, .external_lex_state = 2}, [1654] = {.lex_state = 125, .external_lex_state = 2}, - [1655] = {.lex_state = 125, .external_lex_state = 2}, - [1656] = {.lex_state = 125, .external_lex_state = 2}, - [1657] = {.lex_state = 125, .external_lex_state = 2}, - [1658] = {.lex_state = 125, .external_lex_state = 2}, - [1659] = {.lex_state = 125, .external_lex_state = 2}, - [1660] = {.lex_state = 125, .external_lex_state = 2}, - [1661] = {.lex_state = 125, .external_lex_state = 2}, - [1662] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1655] = {.lex_state = 3, .external_lex_state = 2}, + [1656] = {.lex_state = 5, .external_lex_state = 2}, + [1657] = {.lex_state = 5, .external_lex_state = 2}, + [1658] = {.lex_state = 5, .external_lex_state = 2}, + [1659] = {.lex_state = 5, .external_lex_state = 2}, + [1660] = {.lex_state = 3, .external_lex_state = 2}, + [1661] = {.lex_state = 5, .external_lex_state = 2}, + [1662] = {.lex_state = 125, .external_lex_state = 2}, [1663] = {.lex_state = 125, .external_lex_state = 2}, [1664] = {.lex_state = 125, .external_lex_state = 2}, - [1665] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1665] = {.lex_state = 125, .external_lex_state = 2}, [1666] = {.lex_state = 125, .external_lex_state = 2}, - [1667] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1667] = {.lex_state = 125, .external_lex_state = 2}, [1668] = {.lex_state = 125, .external_lex_state = 2}, [1669] = {.lex_state = 125, .external_lex_state = 2}, [1670] = {.lex_state = 125, .external_lex_state = 2}, [1671] = {.lex_state = 125, .external_lex_state = 2}, [1672] = {.lex_state = 125, .external_lex_state = 2}, [1673] = {.lex_state = 125, .external_lex_state = 2}, - [1674] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1674] = {.lex_state = 125, .external_lex_state = 2}, [1675] = {.lex_state = 125, .external_lex_state = 2}, - [1676] = {.lex_state = 125, .external_lex_state = 2}, + [1676] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, [1677] = {.lex_state = 125, .external_lex_state = 2}, - [1678] = {.lex_state = 125, .external_lex_state = 2}, - [1679] = {.lex_state = 125, .external_lex_state = 2}, - [1680] = {.lex_state = 125, .external_lex_state = 2}, - [1681] = {.lex_state = 125, .external_lex_state = 2}, + [1678] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1679] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1680] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1681] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1682] = {.lex_state = 125, .external_lex_state = 2}, [1683] = {.lex_state = 125, .external_lex_state = 2}, - [1684] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1684] = {.lex_state = 9, .external_lex_state = 8}, [1685] = {.lex_state = 125, .external_lex_state = 2}, [1686] = {.lex_state = 125, .external_lex_state = 2}, [1687] = {.lex_state = 125, .external_lex_state = 2}, - [1688] = {.lex_state = 2, .external_lex_state = 9}, + [1688] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1689] = {.lex_state = 125, .external_lex_state = 2}, - [1690] = {.lex_state = 125, .external_lex_state = 2}, + [1690] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1691] = {.lex_state = 125, .external_lex_state = 2}, - [1692] = {.lex_state = 2, .external_lex_state = 9}, + [1692] = {.lex_state = 9, .external_lex_state = 8}, [1693] = {.lex_state = 125, .external_lex_state = 2}, - [1694] = {.lex_state = 125, .external_lex_state = 2}, - [1695] = {.lex_state = 125, .external_lex_state = 2}, - [1696] = {.lex_state = 125, .external_lex_state = 2}, - [1697] = {.lex_state = 125, .external_lex_state = 2}, - [1698] = {.lex_state = 2, .external_lex_state = 9}, - [1699] = {.lex_state = 125, .external_lex_state = 2}, - [1700] = {.lex_state = 125, .external_lex_state = 2}, - [1701] = {.lex_state = 125, .external_lex_state = 2}, - [1702] = {.lex_state = 125, .external_lex_state = 2}, - [1703] = {.lex_state = 125, .external_lex_state = 2}, - [1704] = {.lex_state = 125, .external_lex_state = 2}, - [1705] = {.lex_state = 125, .external_lex_state = 2}, + [1694] = {.lex_state = 9, .external_lex_state = 8}, + [1695] = {.lex_state = 9, .external_lex_state = 8}, + [1696] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1697] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1698] = {.lex_state = 125, .external_lex_state = 2}, + [1699] = {.lex_state = 9, .external_lex_state = 8}, + [1700] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1701] = {.lex_state = 9, .external_lex_state = 8}, + [1702] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1703] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1704] = {.lex_state = 9, .external_lex_state = 8}, + [1705] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1706] = {.lex_state = 125, .external_lex_state = 2}, [1707] = {.lex_state = 125, .external_lex_state = 2}, - [1708] = {.lex_state = 125, .external_lex_state = 2}, + [1708] = {.lex_state = 9, .external_lex_state = 8}, [1709] = {.lex_state = 125, .external_lex_state = 2}, [1710] = {.lex_state = 125, .external_lex_state = 2}, [1711] = {.lex_state = 125, .external_lex_state = 2}, [1712] = {.lex_state = 125, .external_lex_state = 2}, [1713] = {.lex_state = 125, .external_lex_state = 2}, - [1714] = {.lex_state = 32, .external_lex_state = 2}, + [1714] = {.lex_state = 125, .external_lex_state = 2}, [1715] = {.lex_state = 125, .external_lex_state = 2}, [1716] = {.lex_state = 125, .external_lex_state = 2}, [1717] = {.lex_state = 125, .external_lex_state = 2}, [1718] = {.lex_state = 125, .external_lex_state = 2}, [1719] = {.lex_state = 125, .external_lex_state = 2}, - [1720] = {.lex_state = 125, .external_lex_state = 2}, - [1721] = {.lex_state = 125, .external_lex_state = 2}, + [1720] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1721] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1722] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1723] = {.lex_state = 125, .external_lex_state = 2}, + [1724] = {.lex_state = 125, .external_lex_state = 2}, + [1725] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1726] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1727] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1728] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1729] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1730] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1731] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1732] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1733] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1734] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1735] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1736] = {.lex_state = 125, .external_lex_state = 2}, + [1737] = {.lex_state = 9, .external_lex_state = 8}, + [1738] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1739] = {.lex_state = 125, .external_lex_state = 2}, + [1740] = {.lex_state = 125, .external_lex_state = 2}, + [1741] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1742] = {.lex_state = 125, .external_lex_state = 2}, + [1743] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1744] = {.lex_state = 125, .external_lex_state = 2}, + [1745] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1746] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1747] = {.lex_state = 125, .external_lex_state = 2}, + [1748] = {.lex_state = 125, .external_lex_state = 2}, + [1749] = {.lex_state = 125, .external_lex_state = 2}, + [1750] = {.lex_state = 125, .external_lex_state = 2}, + [1751] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1752] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1753] = {.lex_state = 125, .external_lex_state = 2}, + [1754] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1755] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1756] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1757] = {.lex_state = 125, .external_lex_state = 2}, + [1758] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1759] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1760] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1761] = {.lex_state = 125, .external_lex_state = 2}, + [1762] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1763] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1764] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1765] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1766] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1767] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1768] = {.lex_state = 125, .external_lex_state = 2}, + [1769] = {.lex_state = 125, .external_lex_state = 2}, + [1770] = {.lex_state = 125, .external_lex_state = 2}, + [1771] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1772] = {.lex_state = 125, .external_lex_state = 2}, + [1773] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1774] = {.lex_state = 125, .external_lex_state = 2}, + [1775] = {.lex_state = 125, .external_lex_state = 2}, + [1776] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1777] = {.lex_state = 125, .external_lex_state = 7}, + [1778] = {.lex_state = 125, .external_lex_state = 2}, + [1779] = {.lex_state = 125, .external_lex_state = 2}, + [1780] = {.lex_state = 125, .external_lex_state = 7}, + [1781] = {.lex_state = 125, .external_lex_state = 2}, + [1782] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1783] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1784] = {.lex_state = 125, .external_lex_state = 2}, + [1785] = {.lex_state = 125, .external_lex_state = 2}, + [1786] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1787] = {.lex_state = 125, .external_lex_state = 7}, + [1788] = {.lex_state = 16, .external_lex_state = 9}, + [1789] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1790] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1791] = {.lex_state = 125, .external_lex_state = 7}, + [1792] = {.lex_state = 16, .external_lex_state = 9}, + [1793] = {.lex_state = 125, .external_lex_state = 2}, + [1794] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1795] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1796] = {.lex_state = 125, .external_lex_state = 2}, + [1797] = {.lex_state = 125, .external_lex_state = 7}, + [1798] = {.lex_state = 125, .external_lex_state = 2}, + [1799] = {.lex_state = 125, .external_lex_state = 2}, + [1800] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1801] = {.lex_state = 125, .external_lex_state = 7}, + [1802] = {.lex_state = 125, .external_lex_state = 2}, + [1803] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1804] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1805] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1806] = {.lex_state = 125, .external_lex_state = 7}, + [1807] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1808] = {.lex_state = 125, .external_lex_state = 7}, + [1809] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1810] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1811] = {.lex_state = 16, .external_lex_state = 9}, + [1812] = {.lex_state = 125, .external_lex_state = 7}, + [1813] = {.lex_state = 125, .external_lex_state = 7}, + [1814] = {.lex_state = 125, .external_lex_state = 7}, + [1815] = {.lex_state = 125, .external_lex_state = 7}, + [1816] = {.lex_state = 125, .external_lex_state = 7}, + [1817] = {.lex_state = 125, .external_lex_state = 7}, + [1818] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1819] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1820] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1821] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1822] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1823] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1824] = {.lex_state = 125, .external_lex_state = 2}, + [1825] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1826] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1827] = {.lex_state = 125, .external_lex_state = 2}, + [1828] = {.lex_state = 16, .external_lex_state = 9}, + [1829] = {.lex_state = 16, .external_lex_state = 9}, + [1830] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1831] = {.lex_state = 125, .external_lex_state = 7}, + [1832] = {.lex_state = 125, .external_lex_state = 2}, + [1833] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1834] = {.lex_state = 125, .external_lex_state = 2}, + [1835] = {.lex_state = 125, .external_lex_state = 7}, + [1836] = {.lex_state = 9, .external_lex_state = 8}, + [1837] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1838] = {.lex_state = 9, .external_lex_state = 8}, + [1839] = {.lex_state = 125, .external_lex_state = 2}, + [1840] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1841] = {.lex_state = 125, .external_lex_state = 7}, + [1842] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1843] = {.lex_state = 9, .external_lex_state = 8}, + [1844] = {.lex_state = 125, .external_lex_state = 2}, + [1845] = {.lex_state = 9, .external_lex_state = 8}, + [1846] = {.lex_state = 125, .external_lex_state = 2}, + [1847] = {.lex_state = 9, .external_lex_state = 8}, + [1848] = {.lex_state = 9, .external_lex_state = 8}, + [1849] = {.lex_state = 9, .external_lex_state = 8}, + [1850] = {.lex_state = 125, .external_lex_state = 2}, + [1851] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1852] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1853] = {.lex_state = 125, .external_lex_state = 2}, + [1854] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1855] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1856] = {.lex_state = 9, .external_lex_state = 8}, + [1857] = {.lex_state = 125, .external_lex_state = 2}, + [1858] = {.lex_state = 9, .external_lex_state = 8}, + [1859] = {.lex_state = 9, .external_lex_state = 8}, + [1860] = {.lex_state = 125, .external_lex_state = 7}, + [1861] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1862] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1863] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1864] = {.lex_state = 9, .external_lex_state = 8}, + [1865] = {.lex_state = 9, .external_lex_state = 8}, + [1866] = {.lex_state = 9, .external_lex_state = 8}, + [1867] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1868] = {.lex_state = 9, .external_lex_state = 8}, + [1869] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1870] = {.lex_state = 125, .external_lex_state = 2}, + [1871] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1872] = {.lex_state = 9, .external_lex_state = 8}, + [1873] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1874] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1875] = {.lex_state = 9, .external_lex_state = 8}, + [1876] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1877] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1878] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1879] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1880] = {.lex_state = 125, .external_lex_state = 2}, + [1881] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1882] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1883] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1884] = {.lex_state = 9, .external_lex_state = 8}, + [1885] = {.lex_state = 125, .external_lex_state = 2}, + [1886] = {.lex_state = 125, .external_lex_state = 2}, + [1887] = {.lex_state = 125, .external_lex_state = 2}, + [1888] = {.lex_state = 125, .external_lex_state = 2}, + [1889] = {.lex_state = 3, .external_lex_state = 2}, + [1890] = {.lex_state = 20, .external_lex_state = 10}, + [1891] = {.lex_state = 125, .external_lex_state = 7}, + [1892] = {.lex_state = 12, .external_lex_state = 10}, + [1893] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1894] = {.lex_state = 12, .external_lex_state = 10}, + [1895] = {.lex_state = 125, .external_lex_state = 2}, + [1896] = {.lex_state = 12, .external_lex_state = 10}, + [1897] = {.lex_state = 125, .external_lex_state = 7}, + [1898] = {.lex_state = 20, .external_lex_state = 10}, + [1899] = {.lex_state = 125, .external_lex_state = 2}, + [1900] = {.lex_state = 125, .external_lex_state = 7}, + [1901] = {.lex_state = 125, .external_lex_state = 2}, + [1902] = {.lex_state = 16, .external_lex_state = 9}, + [1903] = {.lex_state = 3, .external_lex_state = 2}, + [1904] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1905] = {.lex_state = 125, .external_lex_state = 2}, + [1906] = {.lex_state = 125, .external_lex_state = 2}, + [1907] = {.lex_state = 125, .external_lex_state = 2}, + [1908] = {.lex_state = 12, .external_lex_state = 10}, + [1909] = {.lex_state = 20, .external_lex_state = 10}, + [1910] = {.lex_state = 20, .external_lex_state = 10}, + [1911] = {.lex_state = 20, .external_lex_state = 10}, + [1912] = {.lex_state = 125, .external_lex_state = 2}, + [1913] = {.lex_state = 125, .external_lex_state = 7}, + [1914] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1915] = {.lex_state = 125, .external_lex_state = 7}, + [1916] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1917] = {.lex_state = 12, .external_lex_state = 10}, + [1918] = {.lex_state = 125, .external_lex_state = 2}, + [1919] = {.lex_state = 12, .external_lex_state = 10}, + [1920] = {.lex_state = 125, .external_lex_state = 7}, + [1921] = {.lex_state = 125, .external_lex_state = 2}, + [1922] = {.lex_state = 125, .external_lex_state = 2}, + [1923] = {.lex_state = 10, .external_lex_state = 2}, + [1924] = {.lex_state = 125, .external_lex_state = 2}, + [1925] = {.lex_state = 125, .external_lex_state = 2}, + [1926] = {.lex_state = 125, .external_lex_state = 2}, + [1927] = {.lex_state = 125, .external_lex_state = 2}, + [1928] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1929] = {.lex_state = 125, .external_lex_state = 7}, + [1930] = {.lex_state = 125, .external_lex_state = 7}, + [1931] = {.lex_state = 125, .external_lex_state = 2}, + [1932] = {.lex_state = 125, .external_lex_state = 2}, + [1933] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1934] = {.lex_state = 125, .external_lex_state = 2}, + [1935] = {.lex_state = 125, .external_lex_state = 2}, + [1936] = {.lex_state = 125, .external_lex_state = 7}, + [1937] = {.lex_state = 12, .external_lex_state = 10}, + [1938] = {.lex_state = 12, .external_lex_state = 10}, + [1939] = {.lex_state = 20, .external_lex_state = 10}, + [1940] = {.lex_state = 20, .external_lex_state = 10}, + [1941] = {.lex_state = 125, .external_lex_state = 7}, + [1942] = {.lex_state = 125, .external_lex_state = 7}, + [1943] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1944] = {.lex_state = 10, .external_lex_state = 2}, + [1945] = {.lex_state = 18, .external_lex_state = 2}, + [1946] = {.lex_state = 20, .external_lex_state = 10}, + [1947] = {.lex_state = 125, .external_lex_state = 2}, + [1948] = {.lex_state = 125, .external_lex_state = 7}, + [1949] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1950] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1951] = {.lex_state = 12, .external_lex_state = 10}, + [1952] = {.lex_state = 10, .external_lex_state = 2}, + [1953] = {.lex_state = 18, .external_lex_state = 2}, + [1954] = {.lex_state = 125, .external_lex_state = 2}, + [1955] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1956] = {.lex_state = 125, .external_lex_state = 2}, + [1957] = {.lex_state = 20, .external_lex_state = 10}, + [1958] = {.lex_state = 125, .external_lex_state = 2}, + [1959] = {.lex_state = 125, .external_lex_state = 2}, + [1960] = {.lex_state = 125, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1961] = {.lex_state = 18, .external_lex_state = 2}, + [1962] = {.lex_state = 125, .external_lex_state = 2}, + [1963] = {.lex_state = 125, .external_lex_state = 7}, + [1964] = {.lex_state = 125, .external_lex_state = 2}, + [1965] = {.lex_state = 125, .external_lex_state = 7}, + [1966] = {.lex_state = 125, .external_lex_state = 2}, + [1967] = {.lex_state = 125, .external_lex_state = 2}, + [1968] = {.lex_state = 125, .external_lex_state = 2}, + [1969] = {.lex_state = 125, .external_lex_state = 2}, + [1970] = {.lex_state = 125, .external_lex_state = 7}, + [1971] = {.lex_state = 125, .external_lex_state = 2}, + [1972] = {.lex_state = 3, .external_lex_state = 2}, + [1973] = {.lex_state = 125, .external_lex_state = 2}, + [1974] = {.lex_state = 125, .external_lex_state = 2}, + [1975] = {.lex_state = 125, .external_lex_state = 2}, + [1976] = {.lex_state = 125, .external_lex_state = 2}, + [1977] = {.lex_state = 125, .external_lex_state = 2}, + [1978] = {.lex_state = 125, .external_lex_state = 2}, + [1979] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1980] = {.lex_state = 125, .external_lex_state = 2}, + [1981] = {.lex_state = 125, .external_lex_state = 2}, + [1982] = {.lex_state = 125, .external_lex_state = 2}, + [1983] = {.lex_state = 125, .external_lex_state = 2}, + [1984] = {.lex_state = 125, .external_lex_state = 2}, + [1985] = {.lex_state = 125, .external_lex_state = 2}, + [1986] = {.lex_state = 125, .external_lex_state = 2}, + [1987] = {.lex_state = 125, .external_lex_state = 2}, + [1988] = {.lex_state = 3, .external_lex_state = 2}, + [1989] = {.lex_state = 125, .external_lex_state = 2}, + [1990] = {.lex_state = 125, .external_lex_state = 2}, + [1991] = {.lex_state = 125, .external_lex_state = 2}, + [1992] = {.lex_state = 125, .external_lex_state = 2}, + [1993] = {.lex_state = 6, .external_lex_state = 2}, + [1994] = {.lex_state = 125, .external_lex_state = 2}, + [1995] = {.lex_state = 125, .external_lex_state = 2}, + [1996] = {.lex_state = 125, .external_lex_state = 2}, + [1997] = {.lex_state = 125, .external_lex_state = 2}, + [1998] = {.lex_state = 125, .external_lex_state = 2}, + [1999] = {.lex_state = 125, .external_lex_state = 2}, + [2000] = {.lex_state = 125, .external_lex_state = 2}, + [2001] = {.lex_state = 125, .external_lex_state = 2}, + [2002] = {.lex_state = 125, .external_lex_state = 2}, + [2003] = {.lex_state = 125, .external_lex_state = 2}, + [2004] = {.lex_state = 125, .external_lex_state = 2}, + [2005] = {.lex_state = 125, .external_lex_state = 2}, + [2006] = {.lex_state = 125, .external_lex_state = 2}, + [2007] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2008] = {.lex_state = 125, .external_lex_state = 7}, + [2009] = {.lex_state = 125, .external_lex_state = 2}, + [2010] = {.lex_state = 125, .external_lex_state = 2}, + [2011] = {.lex_state = 125, .external_lex_state = 2}, + [2012] = {.lex_state = 6, .external_lex_state = 2}, + [2013] = {.lex_state = 125, .external_lex_state = 2}, + [2014] = {.lex_state = 125, .external_lex_state = 2}, + [2015] = {.lex_state = 125, .external_lex_state = 2}, + [2016] = {.lex_state = 125, .external_lex_state = 2}, + [2017] = {.lex_state = 125, .external_lex_state = 2}, + [2018] = {.lex_state = 125, .external_lex_state = 2}, + [2019] = {.lex_state = 125, .external_lex_state = 2}, + [2020] = {.lex_state = 125, .external_lex_state = 7}, + [2021] = {.lex_state = 125, .external_lex_state = 2}, + [2022] = {.lex_state = 125, .external_lex_state = 2}, + [2023] = {.lex_state = 125, .external_lex_state = 2}, + [2024] = {.lex_state = 125, .external_lex_state = 2}, + [2025] = {.lex_state = 125, .external_lex_state = 2}, + [2026] = {.lex_state = 125, .external_lex_state = 7}, + [2027] = {.lex_state = 125, .external_lex_state = 2}, + [2028] = {.lex_state = 125, .external_lex_state = 2}, + [2029] = {.lex_state = 125, .external_lex_state = 2}, + [2030] = {.lex_state = 125, .external_lex_state = 2}, + [2031] = {.lex_state = 125, .external_lex_state = 2}, + [2032] = {.lex_state = 125, .external_lex_state = 2}, + [2033] = {.lex_state = 125, .external_lex_state = 2}, + [2034] = {.lex_state = 125, .external_lex_state = 2}, + [2035] = {.lex_state = 125, .external_lex_state = 2}, + [2036] = {.lex_state = 125, .external_lex_state = 2}, + [2037] = {.lex_state = 125, .external_lex_state = 2}, + [2038] = {.lex_state = 125, .external_lex_state = 2}, + [2039] = {.lex_state = 125, .external_lex_state = 2}, + [2040] = {.lex_state = 125, .external_lex_state = 2}, + [2041] = {.lex_state = 125, .external_lex_state = 2}, + [2042] = {.lex_state = 125, .external_lex_state = 2}, + [2043] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2044] = {.lex_state = 125, .external_lex_state = 7}, + [2045] = {.lex_state = 125, .external_lex_state = 2}, + [2046] = {.lex_state = 125, .external_lex_state = 2}, + [2047] = {.lex_state = 125, .external_lex_state = 2}, + [2048] = {.lex_state = 125, .external_lex_state = 2}, + [2049] = {.lex_state = 125, .external_lex_state = 2}, + [2050] = {.lex_state = 125, .external_lex_state = 2}, + [2051] = {.lex_state = 125, .external_lex_state = 2}, + [2052] = {.lex_state = 125, .external_lex_state = 2}, + [2053] = {.lex_state = 125, .external_lex_state = 7}, + [2054] = {.lex_state = 125, .external_lex_state = 2}, + [2055] = {.lex_state = 6, .external_lex_state = 2}, + [2056] = {.lex_state = 125, .external_lex_state = 2}, + [2057] = {.lex_state = 125, .external_lex_state = 2}, + [2058] = {.lex_state = 125, .external_lex_state = 2}, + [2059] = {.lex_state = 6, .external_lex_state = 2}, + [2060] = {.lex_state = 125, .external_lex_state = 2}, + [2061] = {.lex_state = 125, .external_lex_state = 2}, + [2062] = {.lex_state = 125, .external_lex_state = 2}, + [2063] = {.lex_state = 125, .external_lex_state = 2}, + [2064] = {.lex_state = 125, .external_lex_state = 2}, + [2065] = {.lex_state = 125, .external_lex_state = 2}, + [2066] = {.lex_state = 125, .external_lex_state = 2}, + [2067] = {.lex_state = 125, .external_lex_state = 2}, + [2068] = {.lex_state = 125, .external_lex_state = 2}, + [2069] = {.lex_state = 125, .external_lex_state = 2}, + [2070] = {.lex_state = 125, .external_lex_state = 2}, + [2071] = {.lex_state = 125, .external_lex_state = 2}, + [2072] = {.lex_state = 125, .external_lex_state = 2}, + [2073] = {.lex_state = 125, .external_lex_state = 2}, + [2074] = {.lex_state = 125, .external_lex_state = 2}, + [2075] = {.lex_state = 125, .external_lex_state = 2}, + [2076] = {.lex_state = 125, .external_lex_state = 2}, + [2077] = {.lex_state = 125, .external_lex_state = 2}, + [2078] = {.lex_state = 125, .external_lex_state = 2}, + [2079] = {.lex_state = 125, .external_lex_state = 2}, + [2080] = {.lex_state = 125, .external_lex_state = 7}, + [2081] = {.lex_state = 125, .external_lex_state = 2}, + [2082] = {.lex_state = 125, .external_lex_state = 7}, + [2083] = {.lex_state = 125, .external_lex_state = 2}, + [2084] = {.lex_state = 125, .external_lex_state = 2}, + [2085] = {.lex_state = 125, .external_lex_state = 2}, + [2086] = {.lex_state = 125, .external_lex_state = 2}, + [2087] = {.lex_state = 125, .external_lex_state = 2}, + [2088] = {.lex_state = 125, .external_lex_state = 2}, + [2089] = {.lex_state = 125, .external_lex_state = 2}, + [2090] = {.lex_state = 125, .external_lex_state = 2}, + [2091] = {.lex_state = 125, .external_lex_state = 2}, + [2092] = {.lex_state = 125, .external_lex_state = 2}, + [2093] = {.lex_state = 125, .external_lex_state = 2}, + [2094] = {.lex_state = 125, .external_lex_state = 2}, + [2095] = {.lex_state = 125, .external_lex_state = 2}, + [2096] = {.lex_state = 125, .external_lex_state = 2}, + [2097] = {.lex_state = 125, .external_lex_state = 2}, + [2098] = {.lex_state = 125, .external_lex_state = 2}, + [2099] = {.lex_state = 125, .external_lex_state = 2}, + [2100] = {.lex_state = 125, .external_lex_state = 2}, + [2101] = {.lex_state = 125, .external_lex_state = 2}, + [2102] = {.lex_state = 125, .external_lex_state = 2}, + [2103] = {.lex_state = 125, .external_lex_state = 2}, + [2104] = {.lex_state = 125, .external_lex_state = 2}, + [2105] = {.lex_state = 125, .external_lex_state = 7}, + [2106] = {.lex_state = 125, .external_lex_state = 2}, + [2107] = {.lex_state = 125, .external_lex_state = 2}, + [2108] = {.lex_state = 125, .external_lex_state = 2}, + [2109] = {.lex_state = 125, .external_lex_state = 2}, + [2110] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2111] = {.lex_state = 125, .external_lex_state = 2}, + [2112] = {.lex_state = 125, .external_lex_state = 2}, + [2113] = {.lex_state = 125, .external_lex_state = 2}, + [2114] = {.lex_state = 125, .external_lex_state = 2}, + [2115] = {.lex_state = 125, .external_lex_state = 2}, + [2116] = {.lex_state = 125, .external_lex_state = 2}, + [2117] = {.lex_state = 125, .external_lex_state = 2}, + [2118] = {.lex_state = 6, .external_lex_state = 2}, + [2119] = {.lex_state = 125, .external_lex_state = 7}, + [2120] = {.lex_state = 125, .external_lex_state = 2}, + [2121] = {.lex_state = 125, .external_lex_state = 2}, + [2122] = {.lex_state = 125, .external_lex_state = 2}, + [2123] = {.lex_state = 125, .external_lex_state = 2}, + [2124] = {.lex_state = 125, .external_lex_state = 7}, + [2125] = {.lex_state = 125, .external_lex_state = 2}, + [2126] = {.lex_state = 125, .external_lex_state = 2}, + [2127] = {.lex_state = 125, .external_lex_state = 7}, + [2128] = {.lex_state = 125, .external_lex_state = 2}, + [2129] = {.lex_state = 125, .external_lex_state = 7}, + [2130] = {.lex_state = 125, .external_lex_state = 7}, + [2131] = {.lex_state = 125, .external_lex_state = 2}, + [2132] = {.lex_state = 125, .external_lex_state = 2}, + [2133] = {.lex_state = 125, .external_lex_state = 2}, + [2134] = {.lex_state = 125, .external_lex_state = 2}, + [2135] = {.lex_state = 125, .external_lex_state = 7}, + [2136] = {.lex_state = 125, .external_lex_state = 2}, + [2137] = {.lex_state = 125, .external_lex_state = 2}, + [2138] = {.lex_state = 125, .external_lex_state = 2}, + [2139] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2140] = {.lex_state = 125, .external_lex_state = 2}, + [2141] = {.lex_state = 125, .external_lex_state = 2}, + [2142] = {.lex_state = 125, .external_lex_state = 2}, + [2143] = {.lex_state = 125, .external_lex_state = 2}, + [2144] = {.lex_state = 125, .external_lex_state = 2}, + [2145] = {.lex_state = 125, .external_lex_state = 2}, + [2146] = {.lex_state = 125, .external_lex_state = 2}, + [2147] = {.lex_state = 125, .external_lex_state = 2}, + [2148] = {.lex_state = 125, .external_lex_state = 2}, + [2149] = {.lex_state = 125, .external_lex_state = 2}, + [2150] = {.lex_state = 125, .external_lex_state = 2}, + [2151] = {.lex_state = 125, .external_lex_state = 7}, + [2152] = {.lex_state = 125, .external_lex_state = 2}, + [2153] = {.lex_state = 125, .external_lex_state = 7}, + [2154] = {.lex_state = 125, .external_lex_state = 2}, + [2155] = {.lex_state = 125, .external_lex_state = 2}, + [2156] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2157] = {.lex_state = 125, .external_lex_state = 2}, + [2158] = {.lex_state = 125, .external_lex_state = 2}, + [2159] = {.lex_state = 125, .external_lex_state = 2}, + [2160] = {.lex_state = 125, .external_lex_state = 7}, + [2161] = {.lex_state = 125, .external_lex_state = 2}, + [2162] = {.lex_state = 125, .external_lex_state = 2}, + [2163] = {.lex_state = 125, .external_lex_state = 2}, + [2164] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2165] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2166] = {.lex_state = 125, .external_lex_state = 2}, + [2167] = {.lex_state = 125, .external_lex_state = 2}, + [2168] = {.lex_state = 125, .external_lex_state = 2}, + [2169] = {.lex_state = 125, .external_lex_state = 2}, + [2170] = {.lex_state = 125, .external_lex_state = 2}, + [2171] = {.lex_state = 125, .external_lex_state = 2}, + [2172] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2173] = {.lex_state = 125, .external_lex_state = 2}, + [2174] = {.lex_state = 125, .external_lex_state = 2}, + [2175] = {.lex_state = 125, .external_lex_state = 2}, + [2176] = {.lex_state = 125, .external_lex_state = 2}, + [2177] = {.lex_state = 125, .external_lex_state = 2}, + [2178] = {.lex_state = 125, .external_lex_state = 7}, + [2179] = {.lex_state = 125, .external_lex_state = 2}, + [2180] = {.lex_state = 125, .external_lex_state = 2}, + [2181] = {.lex_state = 125, .external_lex_state = 7}, + [2182] = {.lex_state = 125, .external_lex_state = 2}, + [2183] = {.lex_state = 125, .external_lex_state = 2}, + [2184] = {.lex_state = 125, .external_lex_state = 7}, + [2185] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2186] = {.lex_state = 125, .external_lex_state = 2}, + [2187] = {.lex_state = 125, .external_lex_state = 2}, + [2188] = {.lex_state = 125, .external_lex_state = 2}, + [2189] = {.lex_state = 125, .external_lex_state = 7}, + [2190] = {.lex_state = 125, .external_lex_state = 7}, + [2191] = {.lex_state = 125, .external_lex_state = 7}, + [2192] = {.lex_state = 125, .external_lex_state = 2}, + [2193] = {.lex_state = 125, .external_lex_state = 2}, + [2194] = {.lex_state = 125, .external_lex_state = 2}, + [2195] = {.lex_state = 125, .external_lex_state = 2}, + [2196] = {.lex_state = 125, .external_lex_state = 2}, + [2197] = {.lex_state = 125, .external_lex_state = 2}, + [2198] = {.lex_state = 125, .external_lex_state = 2}, + [2199] = {.lex_state = 125, .external_lex_state = 2}, + [2200] = {.lex_state = 125, .external_lex_state = 2}, + [2201] = {.lex_state = 125, .external_lex_state = 2}, + [2202] = {.lex_state = 125, .external_lex_state = 2}, + [2203] = {.lex_state = 125, .external_lex_state = 2}, + [2204] = {.lex_state = 125, .external_lex_state = 2}, + [2205] = {.lex_state = 125, .external_lex_state = 2}, + [2206] = {.lex_state = 6, .external_lex_state = 2}, + [2207] = {.lex_state = 125, .external_lex_state = 2}, + [2208] = {.lex_state = 125, .external_lex_state = 2}, + [2209] = {.lex_state = 125, .external_lex_state = 2}, + [2210] = {.lex_state = 125, .external_lex_state = 2}, + [2211] = {.lex_state = 125, .external_lex_state = 2}, + [2212] = {.lex_state = 125, .external_lex_state = 2}, + [2213] = {.lex_state = 125, .external_lex_state = 2}, + [2214] = {.lex_state = 125, .external_lex_state = 2}, + [2215] = {.lex_state = 125, .external_lex_state = 2}, + [2216] = {.lex_state = 125, .external_lex_state = 2}, + [2217] = {.lex_state = 125, .external_lex_state = 2}, + [2218] = {.lex_state = 125, .external_lex_state = 2}, + [2219] = {.lex_state = 125, .external_lex_state = 2}, + [2220] = {.lex_state = 125, .external_lex_state = 2}, + [2221] = {.lex_state = 125, .external_lex_state = 2}, + [2222] = {.lex_state = 125, .external_lex_state = 2}, + [2223] = {.lex_state = 125, .external_lex_state = 2}, + [2224] = {.lex_state = 125, .external_lex_state = 2}, + [2225] = {.lex_state = 6, .external_lex_state = 2}, + [2226] = {.lex_state = 125, .external_lex_state = 2}, + [2227] = {.lex_state = 125, .external_lex_state = 2}, + [2228] = {.lex_state = 125, .external_lex_state = 2}, + [2229] = {.lex_state = 125, .external_lex_state = 2}, + [2230] = {.lex_state = 125, .external_lex_state = 2}, + [2231] = {.lex_state = 125, .external_lex_state = 2}, + [2232] = {.lex_state = 125, .external_lex_state = 2}, + [2233] = {.lex_state = 125, .external_lex_state = 2}, + [2234] = {.lex_state = 125, .external_lex_state = 2}, + [2235] = {.lex_state = 125, .external_lex_state = 2}, + [2236] = {.lex_state = 125, .external_lex_state = 2}, + [2237] = {.lex_state = 125, .external_lex_state = 2}, + [2238] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2239] = {.lex_state = 125, .external_lex_state = 2}, + [2240] = {.lex_state = 125, .external_lex_state = 2}, + [2241] = {.lex_state = 125, .external_lex_state = 2}, + [2242] = {.lex_state = 125, .external_lex_state = 2}, + [2243] = {.lex_state = 125, .external_lex_state = 2}, + [2244] = {.lex_state = 125, .external_lex_state = 2}, + [2245] = {.lex_state = 125, .external_lex_state = 2}, + [2246] = {.lex_state = 125, .external_lex_state = 2}, + [2247] = {.lex_state = 125, .external_lex_state = 2}, + [2248] = {.lex_state = 125, .external_lex_state = 2}, + [2249] = {.lex_state = 125, .external_lex_state = 2}, + [2250] = {.lex_state = 125, .external_lex_state = 2}, + [2251] = {.lex_state = 125, .external_lex_state = 2}, + [2252] = {.lex_state = 125, .external_lex_state = 2}, + [2253] = {.lex_state = 125, .external_lex_state = 2}, + [2254] = {.lex_state = 125, .external_lex_state = 2}, + [2255] = {.lex_state = 125, .external_lex_state = 2}, + [2256] = {.lex_state = 125, .external_lex_state = 2}, + [2257] = {.lex_state = 125, .external_lex_state = 2}, + [2258] = {.lex_state = 125, .external_lex_state = 2}, + [2259] = {.lex_state = 125, .external_lex_state = 2}, + [2260] = {.lex_state = 125, .external_lex_state = 2}, + [2261] = {.lex_state = 125, .external_lex_state = 2}, + [2262] = {.lex_state = 125, .external_lex_state = 2}, + [2263] = {.lex_state = 125, .external_lex_state = 2}, + [2264] = {.lex_state = 125, .external_lex_state = 2}, + [2265] = {.lex_state = 125, .external_lex_state = 2}, + [2266] = {.lex_state = 125, .external_lex_state = 2}, + [2267] = {.lex_state = 125, .external_lex_state = 2}, + [2268] = {.lex_state = 125, .external_lex_state = 2}, + [2269] = {.lex_state = 125, .external_lex_state = 2}, + [2270] = {.lex_state = 125, .external_lex_state = 2}, + [2271] = {.lex_state = 125, .external_lex_state = 7}, + [2272] = {.lex_state = 125, .external_lex_state = 2}, + [2273] = {.lex_state = 125, .external_lex_state = 2}, + [2274] = {.lex_state = 125, .external_lex_state = 2}, + [2275] = {.lex_state = 125, .external_lex_state = 2}, + [2276] = {.lex_state = 125, .external_lex_state = 2}, + [2277] = {.lex_state = 125, .external_lex_state = 2}, + [2278] = {.lex_state = 125, .external_lex_state = 2}, + [2279] = {.lex_state = 125, .external_lex_state = 2}, + [2280] = {.lex_state = 125, .external_lex_state = 2}, + [2281] = {.lex_state = 125, .external_lex_state = 2}, + [2282] = {.lex_state = 125, .external_lex_state = 2}, + [2283] = {.lex_state = 125, .external_lex_state = 2}, + [2284] = {.lex_state = 125, .external_lex_state = 2}, + [2285] = {.lex_state = 125, .external_lex_state = 2}, + [2286] = {.lex_state = 125, .external_lex_state = 2}, + [2287] = {.lex_state = 125, .external_lex_state = 2}, + [2288] = {.lex_state = 125, .external_lex_state = 2}, + [2289] = {.lex_state = 125, .external_lex_state = 2}, + [2290] = {.lex_state = 125, .external_lex_state = 7}, + [2291] = {.lex_state = 125, .external_lex_state = 2}, + [2292] = {.lex_state = 125, .external_lex_state = 2}, + [2293] = {.lex_state = 125, .external_lex_state = 2}, + [2294] = {.lex_state = 125, .external_lex_state = 2}, + [2295] = {.lex_state = 125, .external_lex_state = 2}, + [2296] = {.lex_state = 125, .external_lex_state = 2}, + [2297] = {.lex_state = 125, .external_lex_state = 2}, + [2298] = {.lex_state = 125, .external_lex_state = 2}, + [2299] = {.lex_state = 125, .external_lex_state = 2}, + [2300] = {.lex_state = 125, .external_lex_state = 2}, + [2301] = {.lex_state = 125, .external_lex_state = 2}, + [2302] = {.lex_state = 125, .external_lex_state = 2}, + [2303] = {.lex_state = 125, .external_lex_state = 2}, + [2304] = {.lex_state = 125, .external_lex_state = 7}, + [2305] = {.lex_state = 125, .external_lex_state = 2}, + [2306] = {.lex_state = 125, .external_lex_state = 2}, + [2307] = {.lex_state = 125, .external_lex_state = 7}, + [2308] = {.lex_state = 6, .external_lex_state = 2}, + [2309] = {.lex_state = 125, .external_lex_state = 2}, + [2310] = {.lex_state = 125, .external_lex_state = 2}, + [2311] = {.lex_state = 125, .external_lex_state = 2}, + [2312] = {.lex_state = 125, .external_lex_state = 2}, + [2313] = {.lex_state = 125, .external_lex_state = 2}, + [2314] = {.lex_state = 125, .external_lex_state = 2}, + [2315] = {.lex_state = 125, .external_lex_state = 2}, + [2316] = {.lex_state = 125, .external_lex_state = 2}, + [2317] = {.lex_state = 125, .external_lex_state = 2}, + [2318] = {.lex_state = 125, .external_lex_state = 2}, + [2319] = {.lex_state = 125, .external_lex_state = 2}, + [2320] = {.lex_state = 125, .external_lex_state = 2}, + [2321] = {.lex_state = 125, .external_lex_state = 2}, + [2322] = {.lex_state = 125, .external_lex_state = 2}, + [2323] = {.lex_state = 125, .external_lex_state = 2}, + [2324] = {.lex_state = 125, .external_lex_state = 2}, + [2325] = {.lex_state = 125, .external_lex_state = 2}, + [2326] = {.lex_state = 125, .external_lex_state = 2}, + [2327] = {.lex_state = 125, .external_lex_state = 2}, + [2328] = {.lex_state = 125, .external_lex_state = 2}, + [2329] = {.lex_state = 125, .external_lex_state = 2}, + [2330] = {.lex_state = 125, .external_lex_state = 2}, + [2331] = {.lex_state = 125, .external_lex_state = 2}, + [2332] = {.lex_state = 125, .external_lex_state = 2}, + [2333] = {.lex_state = 125, .external_lex_state = 2}, + [2334] = {.lex_state = 125, .external_lex_state = 2}, + [2335] = {.lex_state = 125, .external_lex_state = 2}, + [2336] = {.lex_state = 125, .external_lex_state = 2}, + [2337] = {.lex_state = 125, .external_lex_state = 2}, + [2338] = {.lex_state = 125, .external_lex_state = 2}, + [2339] = {.lex_state = 125, .external_lex_state = 2}, + [2340] = {.lex_state = 2, .external_lex_state = 11}, + [2341] = {.lex_state = 125, .external_lex_state = 2}, + [2342] = {.lex_state = 125, .external_lex_state = 2}, + [2343] = {.lex_state = 125, .external_lex_state = 2}, + [2344] = {.lex_state = 125, .external_lex_state = 2}, + [2345] = {.lex_state = 32, .external_lex_state = 2}, + [2346] = {.lex_state = 125, .external_lex_state = 2}, + [2347] = {.lex_state = 125, .external_lex_state = 2}, + [2348] = {.lex_state = 2, .external_lex_state = 11}, + [2349] = {.lex_state = 125, .external_lex_state = 2}, + [2350] = {.lex_state = 125, .external_lex_state = 2}, + [2351] = {.lex_state = 125, .external_lex_state = 2}, + [2352] = {.lex_state = 125, .external_lex_state = 2}, + [2353] = {.lex_state = 125, .external_lex_state = 2}, + [2354] = {.lex_state = 125, .external_lex_state = 2}, + [2355] = {.lex_state = 125, .external_lex_state = 2}, + [2356] = {.lex_state = 125, .external_lex_state = 2}, + [2357] = {.lex_state = 125, .external_lex_state = 2}, + [2358] = {.lex_state = 125, .external_lex_state = 2}, + [2359] = {.lex_state = 125, .external_lex_state = 2}, + [2360] = {.lex_state = 125, .external_lex_state = 2}, + [2361] = {.lex_state = 125, .external_lex_state = 2}, + [2362] = {.lex_state = 125, .external_lex_state = 2}, + [2363] = {.lex_state = 125, .external_lex_state = 2}, + [2364] = {.lex_state = 125, .external_lex_state = 2}, + [2365] = {.lex_state = 125, .external_lex_state = 2}, + [2366] = {.lex_state = 125, .external_lex_state = 2}, + [2367] = {.lex_state = 125, .external_lex_state = 2}, + [2368] = {.lex_state = 125, .external_lex_state = 2}, + [2369] = {.lex_state = 125, .external_lex_state = 2}, + [2370] = {.lex_state = 125, .external_lex_state = 2}, + [2371] = {.lex_state = 125, .external_lex_state = 2}, + [2372] = {.lex_state = 125, .external_lex_state = 2}, + [2373] = {.lex_state = 125, .external_lex_state = 2}, + [2374] = {.lex_state = 125, .external_lex_state = 2}, + [2375] = {.lex_state = 125, .external_lex_state = 2}, + [2376] = {.lex_state = 125, .external_lex_state = 2}, + [2377] = {.lex_state = 125, .external_lex_state = 2}, + [2378] = {.lex_state = 125, .external_lex_state = 2}, + [2379] = {.lex_state = 125, .external_lex_state = 2}, + [2380] = {.lex_state = 125, .external_lex_state = 2}, + [2381] = {.lex_state = 125, .external_lex_state = 2}, + [2382] = {.lex_state = 125, .external_lex_state = 2}, + [2383] = {.lex_state = 125, .external_lex_state = 2}, + [2384] = {.lex_state = 125, .external_lex_state = 2}, + [2385] = {.lex_state = 125, .external_lex_state = 2}, + [2386] = {.lex_state = 125, .external_lex_state = 2}, + [2387] = {.lex_state = 125, .external_lex_state = 2}, + [2388] = {.lex_state = 32, .external_lex_state = 2}, + [2389] = {.lex_state = 125, .external_lex_state = 2}, + [2390] = {.lex_state = 125, .external_lex_state = 2}, + [2391] = {.lex_state = 125, .external_lex_state = 2}, + [2392] = {.lex_state = 125, .external_lex_state = 2}, + [2393] = {.lex_state = 125, .external_lex_state = 2}, + [2394] = {.lex_state = 125, .external_lex_state = 2}, + [2395] = {.lex_state = 125, .external_lex_state = 2}, + [2396] = {.lex_state = 125, .external_lex_state = 2}, + [2397] = {.lex_state = 125, .external_lex_state = 2}, + [2398] = {.lex_state = 125, .external_lex_state = 2}, + [2399] = {.lex_state = 125, .external_lex_state = 2}, + [2400] = {.lex_state = 125, .external_lex_state = 2}, + [2401] = {.lex_state = 125, .external_lex_state = 2}, + [2402] = {.lex_state = 125, .external_lex_state = 2}, + [2403] = {.lex_state = 125, .external_lex_state = 2}, + [2404] = {.lex_state = 125, .external_lex_state = 2}, + [2405] = {.lex_state = 125, .external_lex_state = 2}, + [2406] = {.lex_state = 32, .external_lex_state = 2}, + [2407] = {.lex_state = 125, .external_lex_state = 2}, + [2408] = {.lex_state = 125, .external_lex_state = 2}, + [2409] = {.lex_state = 125, .external_lex_state = 2}, + [2410] = {.lex_state = 125, .external_lex_state = 2}, + [2411] = {.lex_state = 125, .external_lex_state = 2}, + [2412] = {.lex_state = 125, .external_lex_state = 2}, + [2413] = {.lex_state = 125, .external_lex_state = 2}, + [2414] = {.lex_state = 125, .external_lex_state = 2}, + [2415] = {.lex_state = 2, .external_lex_state = 11}, + [2416] = {.lex_state = 125, .external_lex_state = 2}, + [2417] = {.lex_state = 125, .external_lex_state = 2}, + [2418] = {.lex_state = 2, .external_lex_state = 11}, + [2419] = {.lex_state = 125, .external_lex_state = 2}, + [2420] = {.lex_state = 125, .external_lex_state = 2}, + [2421] = {.lex_state = 125, .external_lex_state = 2}, + [2422] = {.lex_state = 125, .external_lex_state = 2}, + [2423] = {.lex_state = 125, .external_lex_state = 2}, + [2424] = {.lex_state = 125, .external_lex_state = 2}, + [2425] = {.lex_state = 125, .external_lex_state = 2}, + [2426] = {.lex_state = 125, .external_lex_state = 2}, + [2427] = {.lex_state = 125, .external_lex_state = 2}, + [2428] = {.lex_state = 125, .external_lex_state = 2}, + [2429] = {.lex_state = 125, .external_lex_state = 2}, + [2430] = {.lex_state = 125, .external_lex_state = 2}, + [2431] = {.lex_state = 125, .external_lex_state = 2}, + [2432] = {.lex_state = 125, .external_lex_state = 2}, + [2433] = {.lex_state = 125, .external_lex_state = 2}, + [2434] = {.lex_state = 125, .external_lex_state = 2}, + [2435] = {.lex_state = 125, .external_lex_state = 2}, + [2436] = {.lex_state = 125, .external_lex_state = 2}, + [2437] = {.lex_state = 125, .external_lex_state = 2}, + [2438] = {.lex_state = 125, .external_lex_state = 2}, + [2439] = {.lex_state = 125, .external_lex_state = 2}, + [2440] = {.lex_state = 125, .external_lex_state = 2}, + [2441] = {.lex_state = 125, .external_lex_state = 2}, + [2442] = {.lex_state = 125, .external_lex_state = 2}, + [2443] = {.lex_state = 125, .external_lex_state = 2}, + [2444] = {.lex_state = 125, .external_lex_state = 2}, + [2445] = {.lex_state = 32, .external_lex_state = 2}, + [2446] = {.lex_state = 125, .external_lex_state = 2}, + [2447] = {.lex_state = 125, .external_lex_state = 2}, + [2448] = {.lex_state = 125, .external_lex_state = 2}, + [2449] = {.lex_state = 125, .external_lex_state = 2}, + [2450] = {.lex_state = 125, .external_lex_state = 2}, + [2451] = {.lex_state = 125, .external_lex_state = 2}, + [2452] = {.lex_state = 125, .external_lex_state = 2}, + [2453] = {.lex_state = 125, .external_lex_state = 2}, + [2454] = {.lex_state = 125, .external_lex_state = 2}, + [2455] = {.lex_state = 125, .external_lex_state = 2}, + [2456] = {.lex_state = 125, .external_lex_state = 2}, + [2457] = {.lex_state = 125, .external_lex_state = 2}, + [2458] = {.lex_state = 125, .external_lex_state = 2}, + [2459] = {.lex_state = 125, .external_lex_state = 2}, + [2460] = {.lex_state = 125, .external_lex_state = 2}, + [2461] = {.lex_state = 125, .external_lex_state = 2}, + [2462] = {.lex_state = 125, .external_lex_state = 2}, + [2463] = {.lex_state = 125, .external_lex_state = 2}, + [2464] = {.lex_state = 125, .external_lex_state = 2}, + [2465] = {.lex_state = 125, .external_lex_state = 2}, + [2466] = {.lex_state = 125, .external_lex_state = 2}, + [2467] = {.lex_state = 125, .external_lex_state = 2}, + [2468] = {.lex_state = 125, .external_lex_state = 2}, + [2469] = {.lex_state = 125, .external_lex_state = 2}, + [2470] = {.lex_state = 125, .external_lex_state = 2}, + [2471] = {.lex_state = 125, .external_lex_state = 2}, + [2472] = {.lex_state = 125, .external_lex_state = 2}, + [2473] = {.lex_state = 125, .external_lex_state = 2}, }; -static const TSSymbol ts_reserved_words[6][MAX_RESERVED_WORD_SET_SIZE] = { +static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { [1] = { + 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_in, 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_catch, anon_sym_finally, + anon_sym_class, + anon_sym_extends, anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, }, [2] = { anon_sym_else, + anon_sym_in, + anon_sym_catch, anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, }, [3] = { + anon_sym_default, + anon_sym_else, + anon_sym_in, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [4] = { + anon_sym_export, + anon_sym_default, + anon_sym_with, anon_sym_var, anon_sym_const, anon_sym_else, anon_sym_if, + anon_sym_switch, anon_sym_for, 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_catch, anon_sym_finally, + anon_sym_extends, }, - [4] = { + [5] = { + anon_sym_catch, anon_sym_finally, + anon_sym_extends, }, - [5] = { + [6] = { + anon_sym_export, + anon_sym_default, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + 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_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [7] = { + anon_sym_export, + anon_sym_default, + anon_sym_with, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + 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_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [8] = { + anon_sym_in, + anon_sym_extends, + anon_sym_instanceof, + }, + [9] = { + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + 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_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_function, + anon_sym_new, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + }, + [10] = { + anon_sym_in, + anon_sym_catch, + anon_sym_extends, + anon_sym_instanceof, + }, + [11] = { + anon_sym_in, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [12] = { + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + 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_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_new, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + }, + [13] = { + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, anon_sym_else, anon_sym_if, + anon_sym_switch, anon_sym_for, + anon_sym_in, 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_catch, anon_sym_finally, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, }, }; @@ -8470,71 +10173,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_jsx_text] = ACTIONS(1), }, [STATE(1)] = { - [sym_program] = STATE(1626), - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_program] = STATE(2389), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -8544,4240 +10248,4127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(2)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1333), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1333), - [sym_pair] = STATE(1333), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1334), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(95), - [anon_sym_export] = ACTIONS(97), - [anon_sym_STAR] = ACTIONS(99), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(103), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(2361), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(99), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(105), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(109), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(117), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_in] = ACTIONS(95), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(3)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(99), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2451), + [sym_object_assignment_pattern] = STATE(2047), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2451), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2451), + [sym_spread_element] = STATE(1969), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [sym_rest_pattern] = STATE(2047), + [sym_method_definition] = STATE(1969), + [sym_pair] = STATE(1969), + [sym_pair_pattern] = STATE(2047), + [sym__property_name] = STATE(2034), + [sym_computed_property_name] = STATE(2034), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1578), + [aux_sym_object_repeat1] = STATE(2014), + [aux_sym_object_pattern_repeat1] = STATE(2025), + [aux_sym_non_reserved_keyword] = STATE(709), + [sym_identifier] = ACTIONS(115), + [anon_sym_export] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(127), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(123), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(165), + [sym_private_property_identifier] = ACTIONS(167), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(169), + [aux_sym_method_definition_token1] = ACTIONS(171), + [anon_sym_get] = ACTIONS(173), + [anon_sym_set] = ACTIONS(173), [sym_html_comment] = ACTIONS(5), }, [STATE(4)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(99), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2451), + [sym_object_assignment_pattern] = STATE(2047), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2451), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2451), + [sym_spread_element] = STATE(1969), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [sym_rest_pattern] = STATE(2047), + [sym_method_definition] = STATE(1969), + [sym_pair] = STATE(1969), + [sym_pair_pattern] = STATE(2047), + [sym__property_name] = STATE(2034), + [sym_computed_property_name] = STATE(2034), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1578), + [aux_sym_object_repeat1] = STATE(2014), + [aux_sym_object_pattern_repeat1] = STATE(2025), + [aux_sym_non_reserved_keyword] = STATE(709), + [sym_identifier] = ACTIONS(115), + [anon_sym_export] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(137), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(175), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(165), + [sym_private_property_identifier] = ACTIONS(167), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(169), + [aux_sym_method_definition_token1] = ACTIONS(171), + [anon_sym_get] = ACTIONS(173), + [anon_sym_set] = ACTIONS(173), [sym_html_comment] = ACTIONS(5), }, [STATE(5)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(99), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2451), + [sym_object_assignment_pattern] = STATE(2047), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2451), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2451), + [sym_spread_element] = STATE(1969), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [sym_rest_pattern] = STATE(2047), + [sym_method_definition] = STATE(1969), + [sym_pair] = STATE(1969), + [sym_pair_pattern] = STATE(2047), + [sym__property_name] = STATE(2034), + [sym_computed_property_name] = STATE(2034), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1578), + [aux_sym_object_repeat1] = STATE(2014), + [aux_sym_object_pattern_repeat1] = STATE(2025), + [aux_sym_non_reserved_keyword] = STATE(709), + [sym_identifier] = ACTIONS(115), + [anon_sym_export] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(139), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(177), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(165), + [sym_private_property_identifier] = ACTIONS(167), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(169), + [aux_sym_method_definition_token1] = ACTIONS(171), + [anon_sym_get] = ACTIONS(173), + [anon_sym_set] = ACTIONS(173), [sym_html_comment] = ACTIONS(5), }, [STATE(6)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1333), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1333), - [sym_pair] = STATE(1333), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1334), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(141), - [anon_sym_export] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(99), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2451), + [sym_object_assignment_pattern] = STATE(2047), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2451), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2451), + [sym_spread_element] = STATE(2061), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [sym_rest_pattern] = STATE(2047), + [sym_method_definition] = STATE(2061), + [sym_pair] = STATE(2061), + [sym_pair_pattern] = STATE(2047), + [sym__property_name] = STATE(2034), + [sym_computed_property_name] = STATE(2034), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1578), + [aux_sym_object_repeat1] = STATE(2064), + [aux_sym_object_pattern_repeat1] = STATE(2025), + [aux_sym_non_reserved_keyword] = STATE(695), + [sym_identifier] = ACTIONS(179), + [anon_sym_export] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(119), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(145), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(149), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(151), - [anon_sym_set] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(165), + [sym_private_property_identifier] = ACTIONS(167), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(169), + [aux_sym_method_definition_token1] = ACTIONS(171), + [anon_sym_get] = ACTIONS(173), + [anon_sym_set] = ACTIONS(173), [sym_html_comment] = ACTIONS(5), }, [STATE(7)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(153), - [sym_identifier] = ACTIONS(155), - [anon_sym_export] = ACTIONS(158), - [anon_sym_default] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_import] = ACTIONS(166), - [anon_sym_with] = ACTIONS(169), - [anon_sym_var] = ACTIONS(172), - [anon_sym_let] = ACTIONS(175), - [anon_sym_const] = ACTIONS(178), - [anon_sym_if] = ACTIONS(181), - [anon_sym_switch] = ACTIONS(184), - [anon_sym_for] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_await] = ACTIONS(196), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(202), - [anon_sym_try] = ACTIONS(205), - [anon_sym_break] = ACTIONS(208), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_debugger] = ACTIONS(214), - [anon_sym_return] = ACTIONS(217), - [anon_sym_throw] = ACTIONS(220), - [anon_sym_case] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(226), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(232), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_class] = ACTIONS(238), - [anon_sym_async] = ACTIONS(241), - [anon_sym_function] = ACTIONS(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_typeof] = ACTIONS(250), - [anon_sym_void] = ACTIONS(250), - [anon_sym_delete] = ACTIONS(250), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(262), - [sym_number] = ACTIONS(265), - [sym_private_property_identifier] = ACTIONS(268), - [sym_this] = ACTIONS(271), - [sym_super] = ACTIONS(271), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_null] = ACTIONS(271), - [sym_undefined] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_static] = ACTIONS(280), - [anon_sym_get] = ACTIONS(280), - [anon_sym_set] = ACTIONS(280), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2451), + [sym_object_assignment_pattern] = STATE(2047), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2451), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2451), + [sym_spread_element] = STATE(2061), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(1115), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [sym_rest_pattern] = STATE(2047), + [sym_method_definition] = STATE(2061), + [sym_pair] = STATE(2061), + [sym_pair_pattern] = STATE(2047), + [sym__property_name] = STATE(2034), + [sym_computed_property_name] = STATE(2034), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1578), + [aux_sym_object_repeat1] = STATE(2064), + [aux_sym_object_pattern_repeat1] = STATE(2025), + [aux_sym_non_reserved_keyword] = STATE(680), + [sym_identifier] = ACTIONS(183), + [anon_sym_export] = ACTIONS(117), + [anon_sym_STAR] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(159), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_DOT_DOT_DOT] = ACTIONS(163), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(165), + [sym_private_property_identifier] = ACTIONS(167), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [anon_sym_static] = ACTIONS(169), + [aux_sym_method_definition_token1] = ACTIONS(171), + [anon_sym_get] = ACTIONS(173), + [anon_sym_set] = ACTIONS(173), [sym_html_comment] = ACTIONS(5), }, [STATE(8)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(283), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [ts_builtin_sym_end] = ACTIONS(185), + [sym_identifier] = ACTIONS(187), + [anon_sym_export] = ACTIONS(190), + [anon_sym_default] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(185), + [anon_sym_import] = ACTIONS(198), + [anon_sym_with] = ACTIONS(201), + [anon_sym_var] = ACTIONS(204), + [anon_sym_let] = ACTIONS(207), + [anon_sym_const] = ACTIONS(207), + [anon_sym_if] = ACTIONS(210), + [anon_sym_switch] = ACTIONS(213), + [anon_sym_for] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_await] = ACTIONS(225), + [anon_sym_while] = ACTIONS(228), + [anon_sym_do] = ACTIONS(231), + [anon_sym_try] = ACTIONS(234), + [anon_sym_break] = ACTIONS(237), + [anon_sym_continue] = ACTIONS(240), + [anon_sym_debugger] = ACTIONS(243), + [anon_sym_return] = ACTIONS(246), + [anon_sym_throw] = ACTIONS(249), + [anon_sym_case] = ACTIONS(193), + [anon_sym_yield] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE] = ACTIONS(264), + [anon_sym_class] = ACTIONS(267), + [anon_sym_async] = ACTIONS(270), + [anon_sym_function] = ACTIONS(273), + [anon_sym_new] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(282), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_typeof] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(288), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(291), + [sym_number] = ACTIONS(294), + [sym_private_property_identifier] = ACTIONS(297), + [sym_this] = ACTIONS(300), + [sym_super] = ACTIONS(300), + [sym_true] = ACTIONS(300), + [sym_false] = ACTIONS(300), + [sym_null] = ACTIONS(300), + [sym_undefined] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(306), [sym_html_comment] = ACTIONS(5), }, [STATE(9)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(287), + [anon_sym_default] = ACTIONS(309), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_case] = ACTIONS(309), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(10)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(291), + [anon_sym_default] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(291), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_case] = ACTIONS(313), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(11)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(295), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1566), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_await] = ACTIONS(327), + [anon_sym_in] = ACTIONS(329), + [anon_sym_of] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(12)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(371), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_case] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(13)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(301), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(10), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(10), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(373), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_case] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(14)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(303), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_await] = ACTIONS(327), + [anon_sym_in] = ACTIONS(95), + [anon_sym_of] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(15)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [ts_builtin_sym_end] = ACTIONS(377), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(16)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(307), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(381), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(17)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(18)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(301), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1336), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(35), + [anon_sym_in] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(347), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(19)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1131), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2189), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_await] = ACTIONS(35), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, [STATE(20)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(313), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(403), + [anon_sym_export] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(195), + [anon_sym_RBRACE] = ACTIONS(185), + [anon_sym_import] = ACTIONS(409), + [anon_sym_with] = ACTIONS(412), + [anon_sym_var] = ACTIONS(415), + [anon_sym_let] = ACTIONS(418), + [anon_sym_const] = ACTIONS(418), + [anon_sym_if] = ACTIONS(421), + [anon_sym_switch] = ACTIONS(424), + [anon_sym_for] = ACTIONS(427), + [anon_sym_LPAREN] = ACTIONS(219), + [anon_sym_SEMI] = ACTIONS(222), + [anon_sym_await] = ACTIONS(225), + [anon_sym_while] = ACTIONS(430), + [anon_sym_do] = ACTIONS(433), + [anon_sym_try] = ACTIONS(436), + [anon_sym_break] = ACTIONS(439), + [anon_sym_continue] = ACTIONS(442), + [anon_sym_debugger] = ACTIONS(445), + [anon_sym_return] = ACTIONS(448), + [anon_sym_throw] = ACTIONS(451), + [anon_sym_yield] = ACTIONS(252), + [anon_sym_LBRACK] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(258), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_SQUOTE] = ACTIONS(264), + [anon_sym_class] = ACTIONS(454), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(460), + [anon_sym_new] = ACTIONS(276), + [anon_sym_PLUS] = ACTIONS(279), + [anon_sym_DASH] = ACTIONS(279), + [anon_sym_SLASH] = ACTIONS(282), + [anon_sym_BANG] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(285), + [anon_sym_typeof] = ACTIONS(279), + [anon_sym_void] = ACTIONS(279), + [anon_sym_delete] = ACTIONS(279), + [anon_sym_PLUS_PLUS] = ACTIONS(288), + [anon_sym_DASH_DASH] = ACTIONS(288), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(291), + [sym_number] = ACTIONS(294), + [sym_private_property_identifier] = ACTIONS(297), + [sym_this] = ACTIONS(300), + [sym_super] = ACTIONS(300), + [sym_true] = ACTIONS(300), + [sym_false] = ACTIONS(300), + [sym_null] = ACTIONS(300), + [sym_undefined] = ACTIONS(303), + [anon_sym_AT] = ACTIONS(306), [sym_html_comment] = ACTIONS(5), }, [STATE(21)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [ts_builtin_sym_end] = ACTIONS(463), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(22)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [ts_builtin_sym_end] = ACTIONS(377), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(23)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(465), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(24)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(25)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(384), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(469), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(26)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(16), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(27)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(416), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(473), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(28)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(361), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(475), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(29)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(422), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(28), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_RBRACE] = ACTIONS(477), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(30)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(479), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(31)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1116), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2082), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(35), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(32)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(1323), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1076), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(485), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(347), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(33)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(416), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1087), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(509), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(511), + [anon_sym_in] = ACTIONS(329), + [anon_sym_of] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(347), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(34)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(361), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(35)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(384), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(719), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -12785,604 +14376,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(36)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(420), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(37)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(374), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(38)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(422), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(39)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(35)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(2361), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(99), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(40)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(374), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(36)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(737), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -13390,725 +14614,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(41)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(363), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(42)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(366), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(43)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(370), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(44)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(372), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [STATE(45)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(46)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(37)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(736), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14116,241 +14733,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(47)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(1653), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(38)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(711), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(48)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(425), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(39)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(747), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14358,120 +14971,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(49)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(363), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(40)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(776), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14479,120 +15090,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(50)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(345), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(41)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(826), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(997), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(998), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(826), + [sym_subscript_expression] = STATE(826), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(838), + [sym_identifier] = ACTIONS(531), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(327), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(351), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(42)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(727), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14600,120 +15328,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(51)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(366), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(43)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(728), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14721,120 +15447,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(52)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(420), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(44)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(762), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14842,120 +15566,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(53)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(370), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(45)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(729), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14963,120 +15685,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(54)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(372), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(46)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(35), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(47)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(771), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15084,33381 +15923,79342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(55)] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(425), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [STATE(48)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(759), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(56)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_await] = ACTIONS(361), - [anon_sym_in] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym__ternary_qmark] = ACTIONS(355), + [STATE(49)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(736), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(57)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(732), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_await] = ACTIONS(37), - [anon_sym_in] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(73), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym__automatic_semicolon] = ACTIONS(355), - [sym__ternary_qmark] = ACTIONS(355), + [STATE(50)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(771), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(58)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(727), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_await] = ACTIONS(425), - [anon_sym_in] = ACTIONS(363), - [anon_sym_of] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), - [sym__automatic_semicolon] = ACTIONS(355), - [sym__ternary_qmark] = ACTIONS(355), + [STATE(51)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(719), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(59)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_in] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym__ternary_qmark] = ACTIONS(355), + [STATE(52)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(756), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(60)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(856), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_in] = ACTIONS(363), - [anon_sym_of] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - [sym__ternary_qmark] = ACTIONS(355), + [STATE(53)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(780), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, - [STATE(61)] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_in] = ACTIONS(501), - [anon_sym_of] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [sym_optional_chain] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_GT_GT_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_STAR_STAR] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_QMARK_QMARK] = ACTIONS(499), - [anon_sym_instanceof] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(499), - [sym__ternary_qmark] = ACTIONS(499), + [STATE(54)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(737), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(55)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(711), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(56)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(747), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(57)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(776), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(58)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(727), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(59)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(728), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(60)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(762), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(61)] = { + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(806), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(62)] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_in] = ACTIONS(507), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [sym_optional_chain] = ACTIONS(509), - [anon_sym_new] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), - [sym__ternary_qmark] = ACTIONS(509), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1432), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(539), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(543), + [anon_sym_in] = ACTIONS(329), + [anon_sym_of] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(63)] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_in] = ACTIONS(501), - [anon_sym_of] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [sym_optional_chain] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_GT_GT_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_STAR_STAR] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_QMARK_QMARK] = ACTIONS(499), - [anon_sym_instanceof] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(515), - [sym__ternary_qmark] = ACTIONS(499), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(698), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(64)] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_in] = ACTIONS(505), - [anon_sym_of] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [sym_optional_chain] = ACTIONS(503), - [anon_sym_new] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_GT_GT_GT] = ACTIONS(503), - [anon_sym_LT_LT] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(503), - [anon_sym_STAR_STAR] = ACTIONS(503), - [anon_sym_LT_EQ] = ACTIONS(503), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ_EQ] = ACTIONS(503), - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_BANG_EQ_EQ] = ACTIONS(503), - [anon_sym_GT_EQ] = ACTIONS(503), - [anon_sym_QMARK_QMARK] = ACTIONS(503), - [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(517), - [sym__ternary_qmark] = ACTIONS(503), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1123), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(567), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(347), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(65)] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [anon_sym_export] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_default] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_import] = ACTIONS(521), - [anon_sym_with] = ACTIONS(521), - [anon_sym_var] = ACTIONS(521), - [anon_sym_let] = ACTIONS(521), - [anon_sym_const] = ACTIONS(521), - [anon_sym_else] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_switch] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_await] = ACTIONS(521), - [anon_sym_in] = ACTIONS(521), - [anon_sym_of] = ACTIONS(521), - [anon_sym_while] = ACTIONS(521), - [anon_sym_do] = ACTIONS(521), - [anon_sym_try] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_debugger] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_throw] = ACTIONS(521), - [anon_sym_case] = ACTIONS(521), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(521), - [anon_sym_DQUOTE] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(521), - [sym_optional_chain] = ACTIONS(519), - [anon_sym_new] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_GT_GT_GT] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(519), - [anon_sym_STAR_STAR] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_EQ_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_QMARK_QMARK] = ACTIONS(519), - [anon_sym_instanceof] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(519), - [anon_sym_typeof] = ACTIONS(521), - [anon_sym_void] = ACTIONS(521), - [anon_sym_delete] = ACTIONS(521), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(519), - [sym_number] = ACTIONS(519), - [sym_private_property_identifier] = ACTIONS(519), - [sym_this] = ACTIONS(521), - [sym_super] = ACTIONS(521), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_null] = ACTIONS(521), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(519), - [anon_sym_static] = ACTIONS(521), - [anon_sym_get] = ACTIONS(521), - [anon_sym_set] = ACTIONS(521), - [sym__automatic_semicolon] = ACTIONS(519), - [sym__ternary_qmark] = ACTIONS(519), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(759), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(66)] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_import] = ACTIONS(525), - [anon_sym_with] = ACTIONS(525), - [anon_sym_var] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_await] = ACTIONS(525), - [anon_sym_in] = ACTIONS(525), - [anon_sym_of] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_debugger] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_case] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_SQUOTE] = ACTIONS(523), - [anon_sym_class] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_function] = ACTIONS(525), - [sym_optional_chain] = ACTIONS(523), - [anon_sym_new] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(523), - [anon_sym_PIPE_PIPE] = ACTIONS(523), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_GT_GT_GT] = ACTIONS(523), - [anon_sym_LT_LT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(525), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_STAR_STAR] = ACTIONS(523), - [anon_sym_LT_EQ] = ACTIONS(523), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ_EQ] = ACTIONS(523), - [anon_sym_GT_EQ] = ACTIONS(523), - [anon_sym_QMARK_QMARK] = ACTIONS(523), - [anon_sym_instanceof] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_typeof] = ACTIONS(525), - [anon_sym_void] = ACTIONS(525), - [anon_sym_delete] = ACTIONS(525), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(523), - [sym_private_property_identifier] = ACTIONS(523), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_null] = ACTIONS(525), - [sym_undefined] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_static] = ACTIONS(525), - [anon_sym_get] = ACTIONS(525), - [anon_sym_set] = ACTIONS(525), - [sym__automatic_semicolon] = ACTIONS(523), - [sym__ternary_qmark] = ACTIONS(523), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(2062), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(67)] = { - [ts_builtin_sym_end] = ACTIONS(527), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(529), - [anon_sym_default] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_import] = ACTIONS(529), - [anon_sym_with] = ACTIONS(529), - [anon_sym_var] = ACTIONS(529), - [anon_sym_let] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_await] = ACTIONS(529), - [anon_sym_in] = ACTIONS(529), - [anon_sym_of] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_try] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_debugger] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_throw] = ACTIONS(529), - [anon_sym_case] = ACTIONS(529), - [anon_sym_yield] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_DOT] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_class] = ACTIONS(529), - [anon_sym_async] = ACTIONS(529), - [anon_sym_function] = ACTIONS(529), - [sym_optional_chain] = ACTIONS(527), - [anon_sym_new] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_GT_GT_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_LT_EQ] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [anon_sym_instanceof] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(529), - [anon_sym_void] = ACTIONS(529), - [anon_sym_delete] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(527), - [sym_number] = ACTIONS(527), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(529), - [sym_super] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [sym_undefined] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_static] = ACTIONS(529), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(529), - [sym__automatic_semicolon] = ACTIONS(527), - [sym__ternary_qmark] = ACTIONS(527), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(736), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(68)] = { - [ts_builtin_sym_end] = ACTIONS(531), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_default] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_import] = ACTIONS(533), - [anon_sym_with] = ACTIONS(533), - [anon_sym_var] = ACTIONS(533), - [anon_sym_let] = ACTIONS(533), - [anon_sym_const] = ACTIONS(533), - [anon_sym_else] = ACTIONS(533), - [anon_sym_if] = ACTIONS(533), - [anon_sym_switch] = ACTIONS(533), - [anon_sym_for] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_await] = ACTIONS(533), - [anon_sym_in] = ACTIONS(535), - [anon_sym_while] = ACTIONS(533), - [anon_sym_do] = ACTIONS(533), - [anon_sym_try] = ACTIONS(533), - [anon_sym_break] = ACTIONS(533), - [anon_sym_continue] = ACTIONS(533), - [anon_sym_debugger] = ACTIONS(533), - [anon_sym_return] = ACTIONS(533), - [anon_sym_throw] = ACTIONS(533), - [anon_sym_case] = ACTIONS(533), - [anon_sym_yield] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_class] = ACTIONS(533), - [anon_sym_async] = ACTIONS(533), - [anon_sym_function] = ACTIONS(533), - [sym_optional_chain] = ACTIONS(537), - [anon_sym_new] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_GT_GT] = ACTIONS(535), - [anon_sym_GT_GT_GT] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(533), - [anon_sym_PERCENT] = ACTIONS(537), - [anon_sym_STAR_STAR] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_QMARK_QMARK] = ACTIONS(537), - [anon_sym_instanceof] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(533), - [anon_sym_void] = ACTIONS(533), - [anon_sym_delete] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_DASH_DASH] = ACTIONS(531), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(531), - [sym_number] = ACTIONS(531), - [sym_private_property_identifier] = ACTIONS(531), - [sym_this] = ACTIONS(533), - [sym_super] = ACTIONS(533), - [sym_true] = ACTIONS(533), - [sym_false] = ACTIONS(533), - [sym_null] = ACTIONS(533), - [sym_undefined] = ACTIONS(533), - [anon_sym_AT] = ACTIONS(531), - [anon_sym_static] = ACTIONS(533), - [anon_sym_get] = ACTIONS(533), - [anon_sym_set] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(539), - [sym__ternary_qmark] = ACTIONS(537), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(771), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(69)] = { - [ts_builtin_sym_end] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [anon_sym_export] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_default] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_import] = ACTIONS(543), - [anon_sym_with] = ACTIONS(543), - [anon_sym_var] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_await] = ACTIONS(543), - [anon_sym_in] = ACTIONS(545), - [anon_sym_while] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_try] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_debugger] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_throw] = ACTIONS(543), - [anon_sym_case] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(541), - [anon_sym_class] = ACTIONS(543), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(543), - [sym_optional_chain] = ACTIONS(547), - [anon_sym_new] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_GT_GT_GT] = ACTIONS(547), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(547), - [anon_sym_STAR_STAR] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_QMARK_QMARK] = ACTIONS(547), - [anon_sym_instanceof] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_typeof] = ACTIONS(543), - [anon_sym_void] = ACTIONS(543), - [anon_sym_delete] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(541), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(541), - [sym_number] = ACTIONS(541), - [sym_private_property_identifier] = ACTIONS(541), - [sym_this] = ACTIONS(543), - [sym_super] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_null] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_static] = ACTIONS(543), - [anon_sym_get] = ACTIONS(543), - [anon_sym_set] = ACTIONS(543), - [sym__automatic_semicolon] = ACTIONS(549), - [sym__ternary_qmark] = ACTIONS(547), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1008), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(35), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(71), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(70)] = { - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(553), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_default] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_import] = ACTIONS(553), - [anon_sym_with] = ACTIONS(553), - [anon_sym_var] = ACTIONS(553), - [anon_sym_let] = ACTIONS(553), - [anon_sym_const] = ACTIONS(553), - [anon_sym_else] = ACTIONS(553), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(553), - [anon_sym_for] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_await] = ACTIONS(553), - [anon_sym_in] = ACTIONS(555), - [anon_sym_while] = ACTIONS(553), - [anon_sym_do] = ACTIONS(553), - [anon_sym_try] = ACTIONS(553), - [anon_sym_break] = ACTIONS(553), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_debugger] = ACTIONS(553), - [anon_sym_return] = ACTIONS(553), - [anon_sym_throw] = ACTIONS(553), - [anon_sym_case] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_DQUOTE] = ACTIONS(551), - [anon_sym_SQUOTE] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(553), - [anon_sym_function] = ACTIONS(553), - [sym_optional_chain] = ACTIONS(557), - [anon_sym_new] = ACTIONS(553), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_STAR_STAR] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_QMARK_QMARK] = ACTIONS(557), - [anon_sym_instanceof] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(551), - [anon_sym_typeof] = ACTIONS(553), - [anon_sym_void] = ACTIONS(553), - [anon_sym_delete] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(551), - [sym_number] = ACTIONS(551), - [sym_private_property_identifier] = ACTIONS(551), - [sym_this] = ACTIONS(553), - [sym_super] = ACTIONS(553), - [sym_true] = ACTIONS(553), - [sym_false] = ACTIONS(553), - [sym_null] = ACTIONS(553), - [sym_undefined] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [sym__automatic_semicolon] = ACTIONS(559), - [sym__ternary_qmark] = ACTIONS(557), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(719), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(71)] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [anon_sym_export] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_default] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_import] = ACTIONS(563), - [anon_sym_with] = ACTIONS(563), - [anon_sym_var] = ACTIONS(563), - [anon_sym_let] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_switch] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_await] = ACTIONS(563), - [anon_sym_in] = ACTIONS(565), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(563), - [anon_sym_try] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_debugger] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(563), - [anon_sym_case] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_SQUOTE] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(563), - [sym_optional_chain] = ACTIONS(567), - [anon_sym_new] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(565), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_STAR_STAR] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_QMARK_QMARK] = ACTIONS(567), - [anon_sym_instanceof] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_typeof] = ACTIONS(563), - [anon_sym_void] = ACTIONS(563), - [anon_sym_delete] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(561), - [sym_number] = ACTIONS(561), - [sym_private_property_identifier] = ACTIONS(561), - [sym_this] = ACTIONS(563), - [sym_super] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_null] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_static] = ACTIONS(563), - [anon_sym_get] = ACTIONS(563), - [anon_sym_set] = ACTIONS(563), - [sym__automatic_semicolon] = ACTIONS(569), - [sym__ternary_qmark] = ACTIONS(567), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(756), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(72)] = { - [ts_builtin_sym_end] = ACTIONS(571), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(575), - [anon_sym_default] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_import] = ACTIONS(573), - [anon_sym_with] = ACTIONS(573), - [anon_sym_var] = ACTIONS(573), - [anon_sym_let] = ACTIONS(573), - [anon_sym_const] = ACTIONS(573), - [anon_sym_else] = ACTIONS(573), - [anon_sym_if] = ACTIONS(573), - [anon_sym_switch] = ACTIONS(573), - [anon_sym_for] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(571), - [anon_sym_await] = ACTIONS(573), - [anon_sym_in] = ACTIONS(575), - [anon_sym_while] = ACTIONS(573), - [anon_sym_do] = ACTIONS(573), - [anon_sym_try] = ACTIONS(573), - [anon_sym_break] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_debugger] = ACTIONS(573), - [anon_sym_return] = ACTIONS(573), - [anon_sym_throw] = ACTIONS(573), - [anon_sym_case] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_class] = ACTIONS(573), - [anon_sym_async] = ACTIONS(573), - [anon_sym_function] = ACTIONS(573), - [sym_optional_chain] = ACTIONS(577), - [anon_sym_new] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(577), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_GT_GT_GT] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(577), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(577), - [anon_sym_instanceof] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(571), - [sym_number] = ACTIONS(571), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(573), - [sym_super] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_null] = ACTIONS(573), - [sym_undefined] = ACTIONS(573), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_static] = ACTIONS(573), - [anon_sym_get] = ACTIONS(573), - [anon_sym_set] = ACTIONS(573), - [sym__automatic_semicolon] = ACTIONS(579), - [sym__ternary_qmark] = ACTIONS(577), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(780), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(73)] = { - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [anon_sym_export] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_default] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_import] = ACTIONS(583), - [anon_sym_with] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_let] = ACTIONS(583), - [anon_sym_const] = ACTIONS(583), - [anon_sym_else] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_for] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_await] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_while] = ACTIONS(583), - [anon_sym_do] = ACTIONS(583), - [anon_sym_try] = ACTIONS(583), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_debugger] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_case] = ACTIONS(583), - [anon_sym_yield] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(581), - [anon_sym_SQUOTE] = ACTIONS(581), - [anon_sym_class] = ACTIONS(583), - [anon_sym_async] = ACTIONS(583), - [anon_sym_function] = ACTIONS(583), - [sym_optional_chain] = ACTIONS(587), - [anon_sym_new] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_STAR_STAR] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_QMARK_QMARK] = ACTIONS(587), - [anon_sym_instanceof] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_typeof] = ACTIONS(583), - [anon_sym_void] = ACTIONS(583), - [anon_sym_delete] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(581), - [sym_number] = ACTIONS(581), - [sym_private_property_identifier] = ACTIONS(581), - [sym_this] = ACTIONS(583), - [sym_super] = ACTIONS(583), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), - [sym_null] = ACTIONS(583), - [sym_undefined] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [sym__automatic_semicolon] = ACTIONS(589), - [sym__ternary_qmark] = ACTIONS(587), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(737), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(74)] = { - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_export] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_default] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_import] = ACTIONS(593), - [anon_sym_with] = ACTIONS(593), - [anon_sym_var] = ACTIONS(593), - [anon_sym_let] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_else] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_switch] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_in] = ACTIONS(595), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(593), - [anon_sym_try] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_debugger] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_throw] = ACTIONS(593), - [anon_sym_case] = ACTIONS(593), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(591), - [anon_sym_class] = ACTIONS(593), - [anon_sym_async] = ACTIONS(593), - [anon_sym_function] = ACTIONS(593), - [sym_optional_chain] = ACTIONS(597), - [anon_sym_new] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_STAR_STAR] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_QMARK_QMARK] = ACTIONS(597), - [anon_sym_instanceof] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(591), - [anon_sym_typeof] = ACTIONS(593), - [anon_sym_void] = ACTIONS(593), - [anon_sym_delete] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(591), - [sym_number] = ACTIONS(591), - [sym_private_property_identifier] = ACTIONS(591), - [sym_this] = ACTIONS(593), - [sym_super] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_null] = ACTIONS(593), - [sym_undefined] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_static] = ACTIONS(593), - [anon_sym_get] = ACTIONS(593), - [anon_sym_set] = ACTIONS(593), - [sym__automatic_semicolon] = ACTIONS(599), - [sym__ternary_qmark] = ACTIONS(597), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(711), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(75)] = { - [ts_builtin_sym_end] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_default] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_import] = ACTIONS(603), - [anon_sym_with] = ACTIONS(603), - [anon_sym_var] = ACTIONS(603), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(603), - [anon_sym_else] = ACTIONS(603), - [anon_sym_if] = ACTIONS(603), - [anon_sym_switch] = ACTIONS(603), - [anon_sym_for] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_await] = ACTIONS(603), - [anon_sym_in] = ACTIONS(605), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(603), - [anon_sym_try] = ACTIONS(603), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_debugger] = ACTIONS(603), - [anon_sym_return] = ACTIONS(603), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_case] = ACTIONS(603), - [anon_sym_yield] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_class] = ACTIONS(603), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(603), - [sym_optional_chain] = ACTIONS(607), - [anon_sym_new] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_STAR_STAR] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_QMARK_QMARK] = ACTIONS(607), - [anon_sym_instanceof] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_typeof] = ACTIONS(603), - [anon_sym_void] = ACTIONS(603), - [anon_sym_delete] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(601), - [sym_number] = ACTIONS(601), - [sym_private_property_identifier] = ACTIONS(601), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(603), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_null] = ACTIONS(603), - [sym_undefined] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(601), - [anon_sym_static] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [sym__automatic_semicolon] = ACTIONS(609), - [sym__ternary_qmark] = ACTIONS(607), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(747), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(76)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(776), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(77)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(750), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1328), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(727), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(78)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(728), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(79)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1328), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(762), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(80)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(729), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1880), + [aux_sym_non_reserved_keyword] = STATE(805), + [sym_identifier] = ACTIONS(91), + [anon_sym_export] = ACTIONS(93), + [anon_sym_LBRACE] = ACTIONS(97), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(99), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(101), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(105), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(111), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(81)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(756), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(82)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(759), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(83)] = { - [sym_declaration] = STATE(391), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(780), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1834), + [aux_sym_non_reserved_keyword] = STATE(799), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(637), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_if] = ACTIONS(25), + [anon_sym_switch] = ACTIONS(27), + [anon_sym_for] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(37), + [anon_sym_do] = ACTIONS(39), + [anon_sym_try] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_debugger] = ACTIONS(47), + [anon_sym_return] = ACTIONS(49), + [anon_sym_throw] = ACTIONS(51), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(65), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(84)] = { - [sym_declaration] = STATE(401), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(639), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_export_statement] = STATE(757), + [sym_declaration] = STATE(757), + [sym_import] = STATE(1903), + [sym_import_statement] = STATE(757), + [sym_statement] = STATE(729), + [sym_expression_statement] = STATE(757), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_statement_block] = STATE(757), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(757), + [sym_for_statement] = STATE(757), + [sym_for_in_statement] = STATE(757), + [sym_while_statement] = STATE(757), + [sym_do_statement] = STATE(757), + [sym_try_statement] = STATE(757), + [sym_with_statement] = STATE(757), + [sym_break_statement] = STATE(757), + [sym_continue_statement] = STATE(757), + [sym_debugger_statement] = STATE(757), + [sym_return_statement] = STATE(757), + [sym_throw_statement] = STATE(757), + [sym_empty_statement] = STATE(757), + [sym_labeled_statement] = STATE(757), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1126), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(795), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(795), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2290), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1870), + [aux_sym_non_reserved_keyword] = STATE(825), + [sym_identifier] = ACTIONS(379), + [anon_sym_export] = ACTIONS(117), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(125), + [anon_sym_with] = ACTIONS(127), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_switch] = ACTIONS(135), + [anon_sym_for] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(35), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_try] = ACTIONS(143), + [anon_sym_break] = ACTIONS(145), + [anon_sym_continue] = ACTIONS(147), + [anon_sym_debugger] = ACTIONS(149), + [anon_sym_return] = ACTIONS(151), + [anon_sym_throw] = ACTIONS(153), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(157), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(161), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(85)] = { - [sym_declaration] = STATE(401), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(637), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1008), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(511), + [anon_sym_in] = ACTIONS(95), + [anon_sym_of] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(519), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(86)] = { - [sym_declaration] = STATE(391), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(639), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1270), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(87)] = { - [sym_import] = STATE(1272), - [sym_variable_declaration] = STATE(110), - [sym_lexical_declaration] = STATE(110), - [sym_empty_statement] = STATE(110), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(766), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1342), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1342), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1342), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1717), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(647), - [anon_sym_let] = ACTIONS(649), - [anon_sym_const] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(655), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(543), + [anon_sym_in] = ACTIONS(95), + [anon_sym_of] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(553), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(88)] = { - [sym_import] = STATE(1272), - [sym_variable_declaration] = STATE(111), - [sym_lexical_declaration] = STATE(111), - [sym_empty_statement] = STATE(111), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1342), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1342), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1342), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1719), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(647), - [anon_sym_let] = ACTIONS(649), - [anon_sym_const] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(655), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1329), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(347), + [anon_sym_await] = ACTIONS(607), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(89)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(90)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1429), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1279), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1280), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1220), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(651), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(347), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(91)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(498), - [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(680), - [anon_sym_export] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(688), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(682), - [anon_sym_get] = ACTIONS(682), - [anon_sym_set] = ACTIONS(682), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1008), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(485), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(92)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1343), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1203), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1509), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(671), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(93)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1617), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1299), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_in] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(94)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(753), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1670), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1303), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_await] = ACTIONS(717), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(95)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1429), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1280), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1008), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(567), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(96)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(754), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1319), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1320), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(700), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1447), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_in] = ACTIONS(329), + [anon_sym_COLON] = ACTIONS(347), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(97)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1458), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(98)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(703), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(99)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(769), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1364), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(717), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(721), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(100)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(95), + [anon_sym_await] = ACTIONS(607), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(101)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(755), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1303), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1304), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1464), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(102)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1279), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1465), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_in] = ACTIONS(329), + [anon_sym_of] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(103)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1282), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(104)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(771), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1675), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1675), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(593), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(105)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1690), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1690), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(681), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(106)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1282), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1440), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(819), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(107)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(743), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(108)] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(121), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1621), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_in] = ACTIONS(95), + [anon_sym_of] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(805), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(109)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(746), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1568), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym__automatic_semicolon] = ACTIONS(718), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1548), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_in] = ACTIONS(329), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(329), + [anon_sym_DOT] = ACTIONS(329), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(347), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(329), + [anon_sym_PIPE_PIPE] = ACTIONS(329), + [anon_sym_GT_GT] = ACTIONS(329), + [anon_sym_GT_GT_GT] = ACTIONS(329), + [anon_sym_LT_LT] = ACTIONS(329), + [anon_sym_AMP] = ACTIONS(329), + [anon_sym_CARET] = ACTIONS(329), + [anon_sym_PIPE] = ACTIONS(329), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(329), + [anon_sym_STAR_STAR] = ACTIONS(329), + [anon_sym_LT_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(329), + [anon_sym_EQ_EQ_EQ] = ACTIONS(347), + [anon_sym_BANG_EQ] = ACTIONS(329), + [anon_sym_BANG_EQ_EQ] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(347), + [anon_sym_QMARK_QMARK] = ACTIONS(329), + [anon_sym_instanceof] = ACTIONS(329), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym__ternary_qmark] = ACTIONS(347), [sym_html_comment] = ACTIONS(5), }, [STATE(110)] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(113), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1639), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1008), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_await] = ACTIONS(651), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(111)] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(120), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1638), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(765), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(112)] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(117), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(805), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1647), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(783), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(113)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(751), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1657), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(829), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(114)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(501), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1325), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1325), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(501), - [sym_subscript_expression] = STATE(501), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1325), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(726), - [anon_sym_let] = ACTIONS(728), - [anon_sym_const] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(732), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(734), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_STAR] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_in] = ACTIONS(95), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(115)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1669), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(857), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_import] = ACTIONS(859), + [anon_sym_with] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_let] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_else] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_await] = ACTIONS(859), + [anon_sym_in] = ACTIONS(859), + [anon_sym_of] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_try] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_debugger] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_throw] = ACTIONS(859), + [anon_sym_case] = ACTIONS(859), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(857), + [anon_sym_class] = ACTIONS(859), + [anon_sym_async] = ACTIONS(859), + [anon_sym_function] = ACTIONS(859), + [sym_optional_chain] = ACTIONS(857), + [anon_sym_new] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(857), + [anon_sym_PIPE_PIPE] = ACTIONS(857), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_GT_GT_GT] = ACTIONS(857), + [anon_sym_LT_LT] = ACTIONS(857), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(857), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(859), + [anon_sym_BANG_EQ_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_QMARK_QMARK] = ACTIONS(857), + [anon_sym_instanceof] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(857), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_void] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(857), + [sym_number] = ACTIONS(857), + [sym_private_property_identifier] = ACTIONS(857), + [sym_this] = ACTIONS(859), + [sym_super] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_null] = ACTIONS(859), + [sym_undefined] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(857), + [sym__automatic_semicolon] = ACTIONS(861), + [sym__ternary_qmark] = ACTIONS(857), [sym_html_comment] = ACTIONS(5), }, [STATE(116)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1652), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(863), + [sym_identifier] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_import] = ACTIONS(865), + [anon_sym_with] = ACTIONS(865), + [anon_sym_var] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_else] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_await] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_of] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(865), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_debugger] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_throw] = ACTIONS(865), + [anon_sym_case] = ACTIONS(865), + [anon_sym_yield] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_class] = ACTIONS(865), + [anon_sym_async] = ACTIONS(865), + [anon_sym_function] = ACTIONS(865), + [sym_optional_chain] = ACTIONS(863), + [anon_sym_new] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(863), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_QMARK_QMARK] = ACTIONS(863), + [anon_sym_instanceof] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(865), + [anon_sym_void] = ACTIONS(865), + [anon_sym_delete] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(863), + [sym_number] = ACTIONS(863), + [sym_private_property_identifier] = ACTIONS(863), + [sym_this] = ACTIONS(865), + [sym_super] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_null] = ACTIONS(865), + [sym_undefined] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(863), + [sym__automatic_semicolon] = ACTIONS(867), + [sym__ternary_qmark] = ACTIONS(863), [sym_html_comment] = ACTIONS(5), }, [STATE(117)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(789), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1673), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(869), + [sym_identifier] = ACTIONS(871), + [anon_sym_export] = ACTIONS(871), + [anon_sym_STAR] = ACTIONS(871), + [anon_sym_default] = ACTIONS(871), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_import] = ACTIONS(871), + [anon_sym_with] = ACTIONS(871), + [anon_sym_var] = ACTIONS(871), + [anon_sym_let] = ACTIONS(871), + [anon_sym_const] = ACTIONS(871), + [anon_sym_else] = ACTIONS(871), + [anon_sym_if] = ACTIONS(871), + [anon_sym_switch] = ACTIONS(871), + [anon_sym_for] = ACTIONS(871), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_await] = ACTIONS(871), + [anon_sym_in] = ACTIONS(871), + [anon_sym_of] = ACTIONS(871), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(871), + [anon_sym_try] = ACTIONS(871), + [anon_sym_break] = ACTIONS(871), + [anon_sym_continue] = ACTIONS(871), + [anon_sym_debugger] = ACTIONS(871), + [anon_sym_return] = ACTIONS(871), + [anon_sym_throw] = ACTIONS(871), + [anon_sym_case] = ACTIONS(871), + [anon_sym_yield] = ACTIONS(871), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LT] = ACTIONS(871), + [anon_sym_GT] = ACTIONS(871), + [anon_sym_DOT] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(869), + [anon_sym_SQUOTE] = ACTIONS(869), + [anon_sym_class] = ACTIONS(871), + [anon_sym_async] = ACTIONS(871), + [anon_sym_function] = ACTIONS(871), + [sym_optional_chain] = ACTIONS(869), + [anon_sym_new] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(869), + [anon_sym_PIPE_PIPE] = ACTIONS(869), + [anon_sym_GT_GT] = ACTIONS(871), + [anon_sym_GT_GT_GT] = ACTIONS(869), + [anon_sym_LT_LT] = ACTIONS(869), + [anon_sym_AMP] = ACTIONS(871), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_PLUS] = ACTIONS(871), + [anon_sym_DASH] = ACTIONS(871), + [anon_sym_SLASH] = ACTIONS(871), + [anon_sym_PERCENT] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(871), + [anon_sym_EQ_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(871), + [anon_sym_BANG_EQ_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_QMARK_QMARK] = ACTIONS(869), + [anon_sym_instanceof] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(871), + [anon_sym_TILDE] = ACTIONS(869), + [anon_sym_typeof] = ACTIONS(871), + [anon_sym_void] = ACTIONS(871), + [anon_sym_delete] = ACTIONS(871), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(869), + [sym_number] = ACTIONS(869), + [sym_private_property_identifier] = ACTIONS(869), + [sym_this] = ACTIONS(871), + [sym_super] = ACTIONS(871), + [sym_true] = ACTIONS(871), + [sym_false] = ACTIONS(871), + [sym_null] = ACTIONS(871), + [sym_undefined] = ACTIONS(871), + [anon_sym_AT] = ACTIONS(869), + [sym__automatic_semicolon] = ACTIONS(869), + [sym__ternary_qmark] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, [STATE(118)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1658), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(863), + [sym_identifier] = ACTIONS(865), + [anon_sym_export] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_default] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(863), + [anon_sym_COMMA] = ACTIONS(863), + [anon_sym_RBRACE] = ACTIONS(863), + [anon_sym_import] = ACTIONS(865), + [anon_sym_with] = ACTIONS(865), + [anon_sym_var] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_else] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_switch] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_await] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_of] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(865), + [anon_sym_try] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_debugger] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_throw] = ACTIONS(865), + [anon_sym_case] = ACTIONS(865), + [anon_sym_yield] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(863), + [anon_sym_LT] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_DOT] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(863), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_class] = ACTIONS(865), + [anon_sym_async] = ACTIONS(865), + [anon_sym_function] = ACTIONS(865), + [sym_optional_chain] = ACTIONS(863), + [anon_sym_new] = ACTIONS(865), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [anon_sym_GT_GT] = ACTIONS(865), + [anon_sym_GT_GT_GT] = ACTIONS(863), + [anon_sym_LT_LT] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_PERCENT] = ACTIONS(863), + [anon_sym_STAR_STAR] = ACTIONS(863), + [anon_sym_LT_EQ] = ACTIONS(863), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_EQ_EQ_EQ] = ACTIONS(863), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ_EQ] = ACTIONS(863), + [anon_sym_GT_EQ] = ACTIONS(863), + [anon_sym_QMARK_QMARK] = ACTIONS(863), + [anon_sym_instanceof] = ACTIONS(865), + [anon_sym_BANG] = ACTIONS(865), + [anon_sym_TILDE] = ACTIONS(863), + [anon_sym_typeof] = ACTIONS(865), + [anon_sym_void] = ACTIONS(865), + [anon_sym_delete] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(863), + [anon_sym_DASH_DASH] = ACTIONS(863), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(863), + [sym_number] = ACTIONS(863), + [sym_private_property_identifier] = ACTIONS(863), + [sym_this] = ACTIONS(865), + [sym_super] = ACTIONS(865), + [sym_true] = ACTIONS(865), + [sym_false] = ACTIONS(865), + [sym_null] = ACTIONS(865), + [sym_undefined] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(863), + [sym__automatic_semicolon] = ACTIONS(863), + [sym__ternary_qmark] = ACTIONS(863), [sym_html_comment] = ACTIONS(5), }, [STATE(119)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(791), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1678), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(873), + [sym_identifier] = ACTIONS(875), + [anon_sym_export] = ACTIONS(875), + [anon_sym_STAR] = ACTIONS(875), + [anon_sym_default] = ACTIONS(875), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_import] = ACTIONS(875), + [anon_sym_with] = ACTIONS(875), + [anon_sym_var] = ACTIONS(875), + [anon_sym_let] = ACTIONS(875), + [anon_sym_const] = ACTIONS(875), + [anon_sym_else] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_switch] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_await] = ACTIONS(875), + [anon_sym_in] = ACTIONS(875), + [anon_sym_of] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [anon_sym_do] = ACTIONS(875), + [anon_sym_try] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_debugger] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_throw] = ACTIONS(875), + [anon_sym_case] = ACTIONS(875), + [anon_sym_yield] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(875), + [anon_sym_GT] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(875), + [anon_sym_DQUOTE] = ACTIONS(873), + [anon_sym_SQUOTE] = ACTIONS(873), + [anon_sym_class] = ACTIONS(875), + [anon_sym_async] = ACTIONS(875), + [anon_sym_function] = ACTIONS(875), + [sym_optional_chain] = ACTIONS(873), + [anon_sym_new] = ACTIONS(875), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_GT_GT] = ACTIONS(875), + [anon_sym_GT_GT_GT] = ACTIONS(873), + [anon_sym_LT_LT] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(875), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(875), + [anon_sym_PERCENT] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_EQ_EQ] = ACTIONS(875), + [anon_sym_EQ_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(875), + [anon_sym_BANG_EQ_EQ] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_QMARK_QMARK] = ACTIONS(873), + [anon_sym_instanceof] = ACTIONS(875), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_TILDE] = ACTIONS(873), + [anon_sym_typeof] = ACTIONS(875), + [anon_sym_void] = ACTIONS(875), + [anon_sym_delete] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(873), + [anon_sym_DASH_DASH] = ACTIONS(873), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(873), + [sym_number] = ACTIONS(873), + [sym_private_property_identifier] = ACTIONS(873), + [sym_this] = ACTIONS(875), + [sym_super] = ACTIONS(875), + [sym_true] = ACTIONS(875), + [sym_false] = ACTIONS(875), + [sym_null] = ACTIONS(875), + [sym_undefined] = ACTIONS(875), + [anon_sym_AT] = ACTIONS(873), + [sym__automatic_semicolon] = ACTIONS(873), + [sym__ternary_qmark] = ACTIONS(873), [sym_html_comment] = ACTIONS(5), }, [STATE(120)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1651), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(877), + [sym_identifier] = ACTIONS(879), + [anon_sym_export] = ACTIONS(879), + [anon_sym_STAR] = ACTIONS(879), + [anon_sym_default] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_COMMA] = 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_SEMI] = ACTIONS(877), + [anon_sym_await] = ACTIONS(879), + [anon_sym_in] = ACTIONS(879), + [anon_sym_of] = 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_case] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(879), + [anon_sym_GT] = ACTIONS(879), + [anon_sym_DOT] = 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), + [sym_optional_chain] = ACTIONS(877), + [anon_sym_new] = ACTIONS(879), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(879), + [anon_sym_GT_GT_GT] = ACTIONS(877), + [anon_sym_LT_LT] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(879), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(879), + [anon_sym_PLUS] = ACTIONS(879), + [anon_sym_DASH] = ACTIONS(879), + [anon_sym_SLASH] = ACTIONS(879), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_EQ_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_QMARK_QMARK] = ACTIONS(877), + [anon_sym_instanceof] = ACTIONS(879), + [anon_sym_BANG] = ACTIONS(879), + [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), + [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), + [sym__automatic_semicolon] = ACTIONS(877), + [sym__ternary_qmark] = ACTIONS(877), [sym_html_comment] = ACTIONS(5), }, [STATE(121)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1645), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_identifier] = ACTIONS(859), + [anon_sym_export] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_default] = ACTIONS(859), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_COMMA] = ACTIONS(883), + [anon_sym_RBRACE] = ACTIONS(857), + [anon_sym_import] = ACTIONS(859), + [anon_sym_with] = ACTIONS(859), + [anon_sym_var] = ACTIONS(859), + [anon_sym_let] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_else] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_switch] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_await] = ACTIONS(859), + [anon_sym_in] = ACTIONS(881), + [anon_sym_while] = ACTIONS(859), + [anon_sym_do] = ACTIONS(859), + [anon_sym_try] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_debugger] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_throw] = ACTIONS(859), + [anon_sym_case] = ACTIONS(859), + [anon_sym_yield] = ACTIONS(859), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_DOT] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(857), + [anon_sym_SQUOTE] = ACTIONS(857), + [anon_sym_class] = ACTIONS(859), + [anon_sym_async] = ACTIONS(859), + [anon_sym_function] = ACTIONS(859), + [sym_optional_chain] = ACTIONS(883), + [anon_sym_new] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(883), + [anon_sym_PIPE_PIPE] = ACTIONS(883), + [anon_sym_GT_GT] = ACTIONS(881), + [anon_sym_GT_GT_GT] = ACTIONS(883), + [anon_sym_LT_LT] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_STAR_STAR] = ACTIONS(883), + [anon_sym_LT_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_EQ_EQ_EQ] = ACTIONS(883), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ_EQ] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(883), + [anon_sym_QMARK_QMARK] = ACTIONS(883), + [anon_sym_instanceof] = ACTIONS(881), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_TILDE] = ACTIONS(857), + [anon_sym_typeof] = ACTIONS(859), + [anon_sym_void] = ACTIONS(859), + [anon_sym_delete] = ACTIONS(859), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(857), + [sym_number] = ACTIONS(857), + [sym_private_property_identifier] = ACTIONS(857), + [sym_this] = ACTIONS(859), + [sym_super] = ACTIONS(859), + [sym_true] = ACTIONS(859), + [sym_false] = ACTIONS(859), + [sym_null] = ACTIONS(859), + [sym_undefined] = ACTIONS(859), + [anon_sym_AT] = ACTIONS(857), + [sym__automatic_semicolon] = ACTIONS(887), + [sym__ternary_qmark] = ACTIONS(883), [sym_html_comment] = ACTIONS(5), }, [STATE(122)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [ts_builtin_sym_end] = ACTIONS(889), + [sym_identifier] = ACTIONS(891), + [anon_sym_export] = ACTIONS(891), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_default] = ACTIONS(891), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_import] = ACTIONS(891), + [anon_sym_with] = ACTIONS(891), + [anon_sym_var] = ACTIONS(891), + [anon_sym_let] = ACTIONS(891), + [anon_sym_const] = ACTIONS(891), + [anon_sym_else] = ACTIONS(891), + [anon_sym_if] = ACTIONS(891), + [anon_sym_switch] = ACTIONS(891), + [anon_sym_for] = ACTIONS(891), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_await] = ACTIONS(891), + [anon_sym_in] = ACTIONS(893), + [anon_sym_while] = ACTIONS(891), + [anon_sym_do] = ACTIONS(891), + [anon_sym_try] = ACTIONS(891), + [anon_sym_break] = ACTIONS(891), + [anon_sym_continue] = ACTIONS(891), + [anon_sym_debugger] = ACTIONS(891), + [anon_sym_return] = ACTIONS(891), + [anon_sym_throw] = ACTIONS(891), + [anon_sym_case] = ACTIONS(891), + [anon_sym_yield] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_LT] = ACTIONS(891), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(889), + [anon_sym_class] = ACTIONS(891), + [anon_sym_async] = ACTIONS(891), + [anon_sym_function] = ACTIONS(891), + [sym_optional_chain] = ACTIONS(895), + [anon_sym_new] = ACTIONS(891), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_GT_GT_GT] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(891), + [anon_sym_DASH] = ACTIONS(891), + [anon_sym_SLASH] = ACTIONS(891), + [anon_sym_PERCENT] = ACTIONS(895), + [anon_sym_STAR_STAR] = ACTIONS(895), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_EQ_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ_EQ] = ACTIONS(895), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_QMARK_QMARK] = ACTIONS(895), + [anon_sym_instanceof] = ACTIONS(893), + [anon_sym_BANG] = ACTIONS(891), + [anon_sym_TILDE] = ACTIONS(889), + [anon_sym_typeof] = ACTIONS(891), + [anon_sym_void] = ACTIONS(891), + [anon_sym_delete] = ACTIONS(891), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(889), + [sym_number] = ACTIONS(889), + [sym_private_property_identifier] = ACTIONS(889), + [sym_this] = ACTIONS(891), + [sym_super] = ACTIONS(891), + [sym_true] = ACTIONS(891), + [sym_false] = ACTIONS(891), + [sym_null] = ACTIONS(891), + [sym_undefined] = ACTIONS(891), + [anon_sym_AT] = ACTIONS(889), + [sym__automatic_semicolon] = ACTIONS(897), + [sym__ternary_qmark] = ACTIONS(895), [sym_html_comment] = ACTIONS(5), }, [STATE(123)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(782), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(899), + [sym_identifier] = ACTIONS(901), + [anon_sym_export] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_default] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_import] = ACTIONS(901), + [anon_sym_with] = ACTIONS(901), + [anon_sym_var] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_else] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_switch] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_await] = ACTIONS(901), + [anon_sym_in] = ACTIONS(903), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_debugger] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_throw] = ACTIONS(901), + [anon_sym_case] = ACTIONS(901), + [anon_sym_yield] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(903), + [anon_sym_DOT] = ACTIONS(903), + [anon_sym_DQUOTE] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(899), + [anon_sym_class] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_function] = ACTIONS(901), + [sym_optional_chain] = ACTIONS(905), + [anon_sym_new] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(905), + [anon_sym_PIPE_PIPE] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(903), + [anon_sym_GT_GT_GT] = ACTIONS(905), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(903), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(903), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_STAR_STAR] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_EQ_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_QMARK_QMARK] = ACTIONS(905), + [anon_sym_instanceof] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_TILDE] = ACTIONS(899), + [anon_sym_typeof] = ACTIONS(901), + [anon_sym_void] = ACTIONS(901), + [anon_sym_delete] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(899), + [anon_sym_DASH_DASH] = ACTIONS(899), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(899), + [sym_number] = ACTIONS(899), + [sym_private_property_identifier] = ACTIONS(899), + [sym_this] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_true] = ACTIONS(901), + [sym_false] = ACTIONS(901), + [sym_null] = ACTIONS(901), + [sym_undefined] = ACTIONS(901), + [anon_sym_AT] = ACTIONS(899), + [sym__automatic_semicolon] = ACTIONS(907), + [sym__ternary_qmark] = ACTIONS(905), [sym_html_comment] = ACTIONS(5), }, [STATE(124)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(909), + [sym_identifier] = ACTIONS(911), + [anon_sym_export] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_default] = ACTIONS(911), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_import] = ACTIONS(911), + [anon_sym_with] = ACTIONS(911), + [anon_sym_var] = ACTIONS(911), + [anon_sym_let] = ACTIONS(911), + [anon_sym_const] = ACTIONS(911), + [anon_sym_else] = ACTIONS(911), + [anon_sym_if] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(911), + [anon_sym_for] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_await] = ACTIONS(911), + [anon_sym_in] = ACTIONS(913), + [anon_sym_while] = ACTIONS(911), + [anon_sym_do] = ACTIONS(911), + [anon_sym_try] = ACTIONS(911), + [anon_sym_break] = ACTIONS(911), + [anon_sym_continue] = ACTIONS(911), + [anon_sym_debugger] = ACTIONS(911), + [anon_sym_return] = ACTIONS(911), + [anon_sym_throw] = ACTIONS(911), + [anon_sym_case] = ACTIONS(911), + [anon_sym_yield] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(909), + [anon_sym_SQUOTE] = ACTIONS(909), + [anon_sym_class] = ACTIONS(911), + [anon_sym_async] = ACTIONS(911), + [anon_sym_function] = ACTIONS(911), + [sym_optional_chain] = ACTIONS(915), + [anon_sym_new] = ACTIONS(911), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(913), + [anon_sym_GT_GT_GT] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(911), + [anon_sym_DASH] = ACTIONS(911), + [anon_sym_SLASH] = ACTIONS(911), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_STAR_STAR] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ_EQ] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_QMARK_QMARK] = ACTIONS(915), + [anon_sym_instanceof] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(909), + [anon_sym_typeof] = ACTIONS(911), + [anon_sym_void] = ACTIONS(911), + [anon_sym_delete] = ACTIONS(911), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(909), + [sym_number] = ACTIONS(909), + [sym_private_property_identifier] = ACTIONS(909), + [sym_this] = ACTIONS(911), + [sym_super] = ACTIONS(911), + [sym_true] = ACTIONS(911), + [sym_false] = ACTIONS(911), + [sym_null] = ACTIONS(911), + [sym_undefined] = ACTIONS(911), + [anon_sym_AT] = ACTIONS(909), + [sym__automatic_semicolon] = ACTIONS(917), + [sym__ternary_qmark] = ACTIONS(915), [sym_html_comment] = ACTIONS(5), }, [STATE(125)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(919), + [sym_identifier] = ACTIONS(921), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_default] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(919), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(919), + [anon_sym_import] = ACTIONS(921), + [anon_sym_with] = ACTIONS(921), + [anon_sym_var] = ACTIONS(921), + [anon_sym_let] = ACTIONS(921), + [anon_sym_const] = ACTIONS(921), + [anon_sym_else] = ACTIONS(921), + [anon_sym_if] = ACTIONS(921), + [anon_sym_switch] = ACTIONS(921), + [anon_sym_for] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_await] = ACTIONS(921), + [anon_sym_in] = ACTIONS(923), + [anon_sym_while] = ACTIONS(921), + [anon_sym_do] = ACTIONS(921), + [anon_sym_try] = ACTIONS(921), + [anon_sym_break] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(921), + [anon_sym_debugger] = ACTIONS(921), + [anon_sym_return] = ACTIONS(921), + [anon_sym_throw] = ACTIONS(921), + [anon_sym_case] = ACTIONS(921), + [anon_sym_yield] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(919), + [anon_sym_SQUOTE] = ACTIONS(919), + [anon_sym_class] = ACTIONS(921), + [anon_sym_async] = ACTIONS(921), + [anon_sym_function] = ACTIONS(921), + [sym_optional_chain] = ACTIONS(925), + [anon_sym_new] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_GT_GT_GT] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(925), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(925), + [anon_sym_STAR_STAR] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ_EQ] = ACTIONS(925), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_QMARK_QMARK] = ACTIONS(925), + [anon_sym_instanceof] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_TILDE] = ACTIONS(919), + [anon_sym_typeof] = ACTIONS(921), + [anon_sym_void] = ACTIONS(921), + [anon_sym_delete] = ACTIONS(921), + [anon_sym_PLUS_PLUS] = ACTIONS(919), + [anon_sym_DASH_DASH] = ACTIONS(919), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(919), + [sym_number] = ACTIONS(919), + [sym_private_property_identifier] = ACTIONS(919), + [sym_this] = ACTIONS(921), + [sym_super] = ACTIONS(921), + [sym_true] = ACTIONS(921), + [sym_false] = ACTIONS(921), + [sym_null] = ACTIONS(921), + [sym_undefined] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(919), + [sym__automatic_semicolon] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(925), [sym_html_comment] = ACTIONS(5), }, [STATE(126)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_identifier] = ACTIONS(931), + [anon_sym_export] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_default] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_import] = ACTIONS(931), + [anon_sym_with] = ACTIONS(931), + [anon_sym_var] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [anon_sym_else] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_switch] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_await] = ACTIONS(931), + [anon_sym_in] = ACTIONS(933), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_try] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_debugger] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_throw] = ACTIONS(931), + [anon_sym_case] = ACTIONS(931), + [anon_sym_yield] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(933), + [anon_sym_DOT] = ACTIONS(933), + [anon_sym_DQUOTE] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_class] = ACTIONS(931), + [anon_sym_async] = ACTIONS(931), + [anon_sym_function] = ACTIONS(931), + [sym_optional_chain] = ACTIONS(935), + [anon_sym_new] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(935), + [anon_sym_PIPE_PIPE] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(933), + [anon_sym_GT_GT_GT] = ACTIONS(935), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(933), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(933), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_EQ_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_QMARK_QMARK] = ACTIONS(935), + [anon_sym_instanceof] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(929), + [anon_sym_typeof] = ACTIONS(931), + [anon_sym_void] = ACTIONS(931), + [anon_sym_delete] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(929), + [anon_sym_DASH_DASH] = ACTIONS(929), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(929), + [sym_number] = ACTIONS(929), + [sym_private_property_identifier] = ACTIONS(929), + [sym_this] = ACTIONS(931), + [sym_super] = ACTIONS(931), + [sym_true] = ACTIONS(931), + [sym_false] = ACTIONS(931), + [sym_null] = ACTIONS(931), + [sym_undefined] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(929), + [sym__automatic_semicolon] = ACTIONS(937), + [sym__ternary_qmark] = ACTIONS(935), [sym_html_comment] = ACTIONS(5), }, [STATE(127)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(939), + [sym_identifier] = ACTIONS(941), + [anon_sym_export] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_default] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_import] = ACTIONS(941), + [anon_sym_with] = ACTIONS(941), + [anon_sym_var] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_switch] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_await] = ACTIONS(941), + [anon_sym_in] = ACTIONS(943), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_try] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_debugger] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_throw] = ACTIONS(941), + [anon_sym_case] = ACTIONS(941), + [anon_sym_yield] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(939), + [anon_sym_SQUOTE] = ACTIONS(939), + [anon_sym_class] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_function] = ACTIONS(941), + [sym_optional_chain] = ACTIONS(945), + [anon_sym_new] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_GT_GT_GT] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(945), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(945), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(945), + [anon_sym_STAR_STAR] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ_EQ] = ACTIONS(945), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_QMARK_QMARK] = ACTIONS(945), + [anon_sym_instanceof] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_TILDE] = ACTIONS(939), + [anon_sym_typeof] = ACTIONS(941), + [anon_sym_void] = ACTIONS(941), + [anon_sym_delete] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(939), + [sym_number] = ACTIONS(939), + [sym_private_property_identifier] = ACTIONS(939), + [sym_this] = ACTIONS(941), + [sym_super] = ACTIONS(941), + [sym_true] = ACTIONS(941), + [sym_false] = ACTIONS(941), + [sym_null] = ACTIONS(941), + [sym_undefined] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(939), + [sym__automatic_semicolon] = ACTIONS(947), + [sym__ternary_qmark] = ACTIONS(945), [sym_html_comment] = ACTIONS(5), }, [STATE(128)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(764), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(949), + [sym_identifier] = ACTIONS(951), + [anon_sym_export] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_default] = ACTIONS(951), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_import] = ACTIONS(951), + [anon_sym_with] = ACTIONS(951), + [anon_sym_var] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_else] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_switch] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_await] = ACTIONS(951), + [anon_sym_in] = ACTIONS(953), + [anon_sym_while] = ACTIONS(951), + [anon_sym_do] = ACTIONS(951), + [anon_sym_try] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_debugger] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_throw] = ACTIONS(951), + [anon_sym_case] = ACTIONS(951), + [anon_sym_yield] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_GT] = ACTIONS(953), + [anon_sym_DOT] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(949), + [anon_sym_class] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_function] = ACTIONS(951), + [sym_optional_chain] = ACTIONS(955), + [anon_sym_new] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(955), + [anon_sym_PIPE_PIPE] = ACTIONS(955), + [anon_sym_GT_GT] = ACTIONS(953), + [anon_sym_GT_GT_GT] = ACTIONS(955), + [anon_sym_LT_LT] = ACTIONS(955), + [anon_sym_AMP] = ACTIONS(953), + [anon_sym_CARET] = ACTIONS(955), + [anon_sym_PIPE] = ACTIONS(953), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(955), + [anon_sym_STAR_STAR] = ACTIONS(955), + [anon_sym_LT_EQ] = ACTIONS(955), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_EQ_EQ_EQ] = ACTIONS(955), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ_EQ] = ACTIONS(955), + [anon_sym_GT_EQ] = ACTIONS(955), + [anon_sym_QMARK_QMARK] = ACTIONS(955), + [anon_sym_instanceof] = ACTIONS(953), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_TILDE] = ACTIONS(949), + [anon_sym_typeof] = ACTIONS(951), + [anon_sym_void] = ACTIONS(951), + [anon_sym_delete] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(949), + [anon_sym_DASH_DASH] = ACTIONS(949), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(949), + [sym_number] = ACTIONS(949), + [sym_private_property_identifier] = ACTIONS(949), + [sym_this] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_true] = ACTIONS(951), + [sym_false] = ACTIONS(951), + [sym_null] = ACTIONS(951), + [sym_undefined] = ACTIONS(951), + [anon_sym_AT] = ACTIONS(949), + [sym__automatic_semicolon] = ACTIONS(957), + [sym__ternary_qmark] = ACTIONS(955), [sym_html_comment] = ACTIONS(5), }, [STATE(129)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(603), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_identifier] = ACTIONS(961), + [anon_sym_export] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_default] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(959), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(959), + [anon_sym_import] = ACTIONS(961), + [anon_sym_with] = ACTIONS(961), + [anon_sym_var] = ACTIONS(961), + [anon_sym_let] = ACTIONS(961), + [anon_sym_const] = ACTIONS(961), + [anon_sym_else] = ACTIONS(961), + [anon_sym_if] = ACTIONS(961), + [anon_sym_switch] = ACTIONS(961), + [anon_sym_for] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(959), + [anon_sym_await] = ACTIONS(961), + [anon_sym_in] = ACTIONS(963), + [anon_sym_while] = ACTIONS(961), + [anon_sym_do] = ACTIONS(961), + [anon_sym_try] = ACTIONS(961), + [anon_sym_break] = ACTIONS(961), + [anon_sym_continue] = ACTIONS(961), + [anon_sym_debugger] = ACTIONS(961), + [anon_sym_return] = ACTIONS(961), + [anon_sym_throw] = ACTIONS(961), + [anon_sym_case] = ACTIONS(961), + [anon_sym_yield] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DQUOTE] = ACTIONS(959), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_class] = ACTIONS(961), + [anon_sym_async] = ACTIONS(961), + [anon_sym_function] = ACTIONS(961), + [sym_optional_chain] = ACTIONS(965), + [anon_sym_new] = ACTIONS(961), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_GT_GT_GT] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(961), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_STAR_STAR] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(963), + [anon_sym_BANG_EQ_EQ] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_QMARK_QMARK] = ACTIONS(965), + [anon_sym_instanceof] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_TILDE] = ACTIONS(959), + [anon_sym_typeof] = ACTIONS(961), + [anon_sym_void] = ACTIONS(961), + [anon_sym_delete] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(959), + [anon_sym_DASH_DASH] = ACTIONS(959), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(959), + [sym_number] = ACTIONS(959), + [sym_private_property_identifier] = ACTIONS(959), + [sym_this] = ACTIONS(961), + [sym_super] = ACTIONS(961), + [sym_true] = ACTIONS(961), + [sym_false] = ACTIONS(961), + [sym_null] = ACTIONS(961), + [sym_undefined] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(959), + [sym__automatic_semicolon] = ACTIONS(967), + [sym__ternary_qmark] = ACTIONS(965), [sym_html_comment] = ACTIONS(5), }, [STATE(130)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(763), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1664), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1302), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1975), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1980), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(131)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_declaration] = STATE(750), + [sym_import] = STATE(1903), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(1057), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(1057), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1958), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(132)] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_declaration] = STATE(748), + [sym_import] = STATE(1903), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1466), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(1057), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(1057), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1958), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(133)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1656), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1995), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1997), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(134)] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1995), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1997), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(135)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(752), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1625), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1995), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1997), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(136)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(794), - [anon_sym_export] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(798), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(796), - [anon_sym_get] = ACTIONS(796), - [anon_sym_set] = ACTIONS(796), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1200), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1975), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1980), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(137)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1627), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1995), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1997), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(138)] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_declaration] = STATE(750), + [sym_import] = STATE(1903), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(1057), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(1057), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1958), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_var] = ACTIONS(129), + [anon_sym_let] = ACTIONS(131), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(139)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1642), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1221), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1995), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1997), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(140)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(760), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1660), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_declaration] = STATE(750), + [sym_import] = STATE(1903), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1454), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(1057), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(1057), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1926), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(993), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(141)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(747), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1570), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_declaration] = STATE(748), + [sym_import] = STATE(1903), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1466), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(1057), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(1057), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1926), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(109), + [anon_sym_async] = ACTIONS(993), + [anon_sym_function] = ACTIONS(113), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(142)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(729), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(730), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_declaration] = STATE(748), + [sym_import] = STATE(1903), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1466), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_class_declaration] = STATE(765), + [sym_function_expression] = STATE(1057), + [sym_function_declaration] = STATE(765), + [sym_generator_function] = STATE(1057), + [sym_generator_function_declaration] = STATE(765), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1958), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(23), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(63), + [anon_sym_async] = ACTIONS(981), + [anon_sym_function] = ACTIONS(67), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(143)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(461), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(579), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(584), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [sym_import] = STATE(1889), + [sym_variable_declaration] = STATE(169), + [sym_lexical_declaration] = STATE(169), + [sym_empty_statement] = STATE(169), + [sym_parenthesized_expression] = STATE(846), + [sym_expression] = STATE(1272), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2023), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2023), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2023), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2344), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(835), + [sym_identifier] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_import] = ACTIONS(323), + [anon_sym_var] = ACTIONS(999), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(144)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(625), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(733), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_variable_declaration] = STATE(173), + [sym_lexical_declaration] = STATE(173), + [sym_empty_statement] = STATE(173), + [sym_parenthesized_expression] = STATE(846), + [sym_expression] = STATE(1330), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2023), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2023), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2023), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2446), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(835), + [sym_identifier] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_import] = ACTIONS(323), + [anon_sym_var] = ACTIONS(999), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(145)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(622), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_variable_declaration] = STATE(166), + [sym_lexical_declaration] = STATE(166), + [sym_empty_statement] = STATE(166), + [sym_parenthesized_expression] = STATE(846), + [sym_expression] = STATE(1337), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2023), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2023), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(846), + [sym_subscript_expression] = STATE(846), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2023), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2472), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(835), + [sym_identifier] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_import] = ACTIONS(323), + [anon_sym_var] = ACTIONS(999), + [anon_sym_let] = ACTIONS(1001), + [anon_sym_const] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(146)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(1989), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(1927), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_pattern_repeat1] = STATE(1998), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_RBRACK] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(147)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1342), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1981), + [sym_assignment_pattern] = STATE(2125), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1981), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(886), + [sym_subscript_expression] = STATE(886), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1981), + [sym_spread_element] = STATE(1976), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [sym_pattern] = STATE(1977), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(851), + [sym_identifier] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(977), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(148)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(756), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1681), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(149)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(685), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(694), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1546), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2005), + [sym_assignment_pattern] = STATE(1974), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2005), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(882), + [sym_subscript_expression] = STATE(882), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2005), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [sym_pattern] = STATE(1922), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_pattern_repeat1] = STATE(1984), + [aux_sym_non_reserved_keyword] = STATE(843), + [sym_identifier] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1028), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(150)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1672), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1306), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2038), + [sym_assignment_pattern] = STATE(2032), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2038), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(879), + [sym_subscript_expression] = STATE(879), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2038), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2357), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [sym_pattern] = STATE(1895), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(848), + [sym_identifier] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(151)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(729), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(709), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(2125), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(1977), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_COMMA] = ACTIONS(1040), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_RBRACK] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(152)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(622), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(712), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1242), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2038), + [sym_assignment_pattern] = STATE(2032), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2038), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(879), + [sym_subscript_expression] = STATE(879), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2038), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2331), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [sym_pattern] = STATE(1895), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(848), + [sym_identifier] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(153)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(713), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(2103), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(2006), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1042), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(154)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1615), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1227), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_spread_element] = STATE(2051), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(2052), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1046), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(155)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(773), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1694), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(2103), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(2006), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(156)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(2032), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(1895), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(157)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(768), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1695), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1245), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_spread_element] = STATE(1990), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(1991), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(158)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(765), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1650), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1201), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_spread_element] = STATE(2036), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_array_repeat1] = STATE(2037), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(159)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(582), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1340), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2024), + [sym_assignment_pattern] = STATE(2092), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2024), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(880), + [sym_subscript_expression] = STATE(880), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2024), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [sym_pattern] = STATE(1962), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(858), + [sym_identifier] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1058), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(160)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(585), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1229), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_spread_element] = STATE(2462), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2462), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(161)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(578), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1342), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_spread_element] = STATE(1976), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(1064), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1066), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(162)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(461), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(579), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(584), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(812), - [anon_sym_export] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(2103), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(2006), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(163)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1687), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1394), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_spread_element] = STATE(1976), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(164)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(685), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(686), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_spread_element] = STATE(2342), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2342), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(165)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1832), + [sym_assignment_pattern] = STATE(2092), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1832), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(833), + [sym_subscript_expression] = STATE(833), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1832), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [sym_pattern] = STATE(1962), + [sym_rest_pattern] = STATE(1853), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(809), + [sym_identifier] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1019), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(166)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(835), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_empty_statement] = STATE(181), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1331), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2458), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(167)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(838), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(924), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2033), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2033), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(924), + [sym_subscript_expression] = STATE(924), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2033), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(895), + [sym_identifier] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_import] = ACTIONS(323), + [anon_sym_var] = ACTIONS(1072), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1076), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(168)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(851), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1131), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2189), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym__automatic_semicolon] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, [STATE(169)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(852), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_empty_statement] = STATE(180), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1304), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2423), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(170)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(853), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_empty_statement] = STATE(174), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1195), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2378), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(171)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(854), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_empty_statement] = STATE(184), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1333), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2467), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(172)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(818), - [anon_sym_export] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), + [sym_import] = STATE(1889), + [sym_empty_statement] = STATE(179), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1319), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2396), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(173)] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_empty_statement] = STATE(177), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1315), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2373), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(174)] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(625), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1254), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2379), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(175)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1252), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2465), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(176)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(862), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2425), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1082), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(177)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1234), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2447), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1084), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(178)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1147), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2375), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(179)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1236), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2404), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(180)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1192), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2371), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1090), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(181)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1317), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2392), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(182)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(684), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1237), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2338), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1094), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(183)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(687), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1320), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2405), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1096), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(184)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(859), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1321), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2407), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(185)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2410), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(186)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(758), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(857), + [sym_identifier] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(187)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(697), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(826), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(997), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(998), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(826), + [sym_subscript_expression] = STATE(826), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(865), + [sym_identifier] = ACTIONS(1106), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(188)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(710), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1103), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1226), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(189)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1110), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1230), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(190)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1026), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1231), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(191)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1027), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1232), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(192)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(717), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1243), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(193)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(719), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1268), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(194)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(720), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1273), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(195)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(721), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1274), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(196)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1541), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(197)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1219), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1219), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(493), - [sym_subscript_expression] = STATE(493), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1219), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(824), - [anon_sym_export] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(828), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(830), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1542), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(198)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(728), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1543), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(199)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1544), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(200)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1255), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(201)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(580), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1256), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(202)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(575), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1257), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(203)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1258), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(204)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1189), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2437), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(205)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1423), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(206)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(607), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1424), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(207)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(590), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1425), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(208)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1426), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(209)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(592), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1103), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1122), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(210)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(574), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1434), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(211)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(593), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1435), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(212)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1436), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(213)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(595), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1437), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(214)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(598), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1442), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(215)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1443), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(216)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1444), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(217)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(576), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1445), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(218)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(748), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1448), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(219)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(863), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1449), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(220)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1450), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(221)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1451), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(222)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1287), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(223)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(734), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1288), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(224)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(738), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1289), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(225)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1290), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(226)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(736), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1460), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(227)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1461), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(228)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(739), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1462), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(229)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1463), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(1112), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(230)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1322), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2411), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(231)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(781), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1219), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2376), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(232)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1026), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1120), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(233)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(790), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1027), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1121), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(234)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(792), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1239), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2426), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(235)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(793), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_namespace_export] = STATE(2079), + [sym_export_clause] = STATE(1948), + [sym_declaration] = STATE(766), + [sym_variable_declaration] = STATE(765), + [sym_lexical_declaration] = STATE(765), + [sym_class_declaration] = STATE(765), + [sym_function_declaration] = STATE(765), + [sym_generator_function_declaration] = STATE(765), + [sym_decorator] = STATE(1661), + [aux_sym_export_statement_repeat1] = STATE(1886), + [anon_sym_STAR] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1116), + [anon_sym_LBRACE] = ACTIONS(1118), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_var] = ACTIONS(1120), + [anon_sym_let] = ACTIONS(1122), + [anon_sym_const] = ACTIONS(1122), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(95), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_class] = ACTIONS(1124), + [anon_sym_async] = ACTIONS(1126), + [anon_sym_function] = ACTIONS(1128), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(95), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(236)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1240), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2427), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(237)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(795), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(875), + [sym_identifier] = ACTIONS(1130), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(238)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1281), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(239)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(799), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1307), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(240)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(800), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1324), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2413), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(241)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(869), + [sym_identifier] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(242)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(826), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(997), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(998), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(826), + [sym_subscript_expression] = STATE(826), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(818), + [sym_identifier] = ACTIONS(1134), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(243)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1103), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1067), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(244)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1110), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1068), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(245)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1026), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1069), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(246)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(757), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1027), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1070), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(247)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(248)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1159), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1159), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1159), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(832), - [anon_sym_export] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(836), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(838), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(834), - [anon_sym_get] = ACTIONS(834), - [anon_sym_set] = ACTIONS(834), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(826), + [sym_expression] = STATE(1558), + [sym_primary_expression] = STATE(997), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(998), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(826), + [sym_subscript_expression] = STATE(826), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(828), + [sym_identifier] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(535), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(249)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1103), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1077), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(250)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1110), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1078), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(251)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1026), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1079), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(252)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1027), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1080), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(253)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(693), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1188), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2372), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(254)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1191), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2339), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(255)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1235), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(256)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(696), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1284), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(257)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(872), + [sym_identifier] = ACTIONS(1138), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(258)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(699), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(901), + [sym_identifier] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(259)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(700), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(902), + [sym_identifier] = ACTIONS(1142), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(260)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(701), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(907), + [sym_identifier] = ACTIONS(1144), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(261)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(702), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1318), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2394), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(262)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(703), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(910), + [sym_identifier] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(263)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1260), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2468), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(264)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(705), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1228), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2453), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(265)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(706), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1903), + [sym_statement_block] = STATE(1110), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1124), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(1108), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(266)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(707), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1233), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2417), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(267)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1116), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_sequence_expression] = STATE(2082), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(268)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(861), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(864), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(269)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(977), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1277), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(270)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(833), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(982), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1271), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(271)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(718), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(991), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1275), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(272)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(857), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(929), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(928), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(904), + [sym_identifier] = ACTIONS(1150), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DOT] = ACTIONS(1104), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(273)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_statement_block] = STATE(938), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1276), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(1110), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(274)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1152), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_sequence_expression] = STATE(2403), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(275)] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1508), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(276)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1395), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(277)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1261), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(278)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(834), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1484), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(279)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1266), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(280)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(837), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1334), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(281)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(839), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1546), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(282)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(840), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1128), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(283)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(841), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1129), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(284)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(842), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1341), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2013), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2013), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(906), + [sym_subscript_expression] = STATE(906), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2013), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(853), + [sym_identifier] = ACTIONS(1152), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1154), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(285)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(843), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(286)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(844), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(287)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1279), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(288)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(846), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1197), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(289)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(847), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1283), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(290)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(848), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1301), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(291)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1359), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(292)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(850), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1151), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(293)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1154), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(294)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1187), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(295)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1190), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(296)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(864), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1196), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(297)] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(785), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1199), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(298)] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1262), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(299)] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1264), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(300)] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1265), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(301)] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1267), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(302)] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1269), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(303)] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1504), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(304)] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1280), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(305)] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(306)] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(307)] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1556), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(308)] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1559), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(309)] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1550), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(310)] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1552), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(311)] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_catch] = ACTIONS(501), - [anon_sym_finally] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(893), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1376), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(312)] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_catch] = ACTIONS(505), - [anon_sym_finally] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [anon_sym_new] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1563), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(313)] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1553), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(314)] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1554), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(315)] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1567), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(316)] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1560), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(317)] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1565), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(318)] = { - [sym_formal_parameters] = STATE(1671), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_of] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(915), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(921), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(915), - [anon_sym_get] = ACTIONS(915), - [anon_sym_set] = ACTIONS(915), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1561), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(319)] = { - [sym_formal_parameters] = STATE(1619), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_let] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(932), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(925), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(925), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1562), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(320)] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1549), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(321)] = { - [sym_formal_parameters] = STATE(1671), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_of] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(915), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(921), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(915), - [anon_sym_get] = ACTIONS(915), - [anon_sym_set] = ACTIONS(915), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1557), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(322)] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1555), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(323)] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1247), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(324)] = { - [sym_catch_clause] = STATE(333), - [sym_finally_clause] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(936), - [anon_sym_export] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_import] = ACTIONS(936), - [anon_sym_with] = ACTIONS(936), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_await] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_debugger] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_throw] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(938), - [anon_sym_finally] = ACTIONS(940), - [anon_sym_yield] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_typeof] = ACTIONS(936), - [anon_sym_void] = ACTIONS(936), - [anon_sym_delete] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(934), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(934), - [sym_number] = ACTIONS(934), - [sym_private_property_identifier] = ACTIONS(934), - [sym_this] = ACTIONS(936), - [sym_super] = ACTIONS(936), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_undefined] = ACTIONS(936), - [anon_sym_AT] = ACTIONS(934), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1340), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, [STATE(325)] = { - [sym_formal_parameters] = STATE(1619), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_let] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(932), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(925), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(925), - [sym__ternary_qmark] = ACTIONS(764), + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1564), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2351), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2351), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(692), + [sym_subscript_expression] = STATE(692), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2351), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(925), + [sym_identifier] = ACTIONS(317), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(367), + [anon_sym_AT] = ACTIONS(89), [sym_html_comment] = ACTIONS(5), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(499), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - 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(501), 44, - 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_catch, - anon_sym_finally, - anon_sym_yield, - 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, - [71] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(519), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - 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(521), 44, - 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_catch, - anon_sym_finally, - anon_sym_yield, - 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, - [142] = 13, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - STATE(1707), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(880), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + [STATE(326)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1335), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(327)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(328)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1004), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(329)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1308), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(330)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1309), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(331)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1310), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(332)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1311), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(333)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1312), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(334)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1313), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(335)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1314), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(336)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1316), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(337)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1325), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(338)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1326), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(339)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1328), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(340)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1332), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(341)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1148), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(342)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1149), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(343)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1150), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(344)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1482), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(345)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1153), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(346)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(347)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(348)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1204), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(349)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1206), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(350)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1207), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(351)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1208), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(352)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1209), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(353)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1210), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(354)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1211), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(355)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1212), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(356)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1213), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(357)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1214), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(358)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1215), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(359)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1216), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(360)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1218), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(361)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1222), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(362)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1223), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(363)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1225), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(364)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(365)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(366)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1398), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(367)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1400), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(368)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1401), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(369)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1402), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(370)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1404), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(371)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1405), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(372)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1406), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(373)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1407), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(374)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1408), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(375)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1410), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(376)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1411), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(377)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1412), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(378)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1413), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(379)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1414), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(380)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1415), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(381)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(892), + [sym_expression] = STATE(1416), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2416), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2416), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(892), + [sym_subscript_expression] = STATE(892), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1630), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2416), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(871), + [sym_identifier] = ACTIONS(537), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(543), + [anon_sym_yield] = ACTIONS(545), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(553), + [anon_sym_DASH] = ACTIONS(553), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(555), + [anon_sym_typeof] = ACTIONS(553), + [anon_sym_void] = ACTIONS(553), + [anon_sym_delete] = ACTIONS(553), + [anon_sym_PLUS_PLUS] = ACTIONS(557), + [anon_sym_DASH_DASH] = ACTIONS(557), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(559), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(382)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(383)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(384)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1453), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(385)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1455), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(386)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1456), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(387)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1457), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(388)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1459), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(389)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1467), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(390)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1470), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(391)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1471), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(392)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1472), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(393)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1473), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(394)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1474), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(395)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1475), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(396)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1476), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(397)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1477), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(398)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1478), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(399)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1194), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(400)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(923), + [sym_expression] = STATE(1479), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2414), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2414), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(923), + [sym_subscript_expression] = STATE(923), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1650), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2414), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2347), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(889), + [sym_identifier] = ACTIONS(817), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(821), + [anon_sym_yield] = ACTIONS(823), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(825), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(827), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(831), + [anon_sym_typeof] = ACTIONS(829), + [anon_sym_void] = ACTIONS(829), + [anon_sym_delete] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(835), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(837), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(401)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1198), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(402)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(403)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1004), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(404)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1130), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(405)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1132), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(406)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1133), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(407)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1134), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(408)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1135), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(409)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1136), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(410)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1137), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(411)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1138), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(412)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1139), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(413)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1140), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(414)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1141), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(415)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1142), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(416)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1143), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(417)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1144), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(418)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1145), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(419)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(863), + [sym_expression] = STATE(1146), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2346), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2346), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(863), + [sym_subscript_expression] = STATE(863), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1644), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2346), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(840), + [sym_identifier] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(567), + [anon_sym_yield] = ACTIONS(569), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(575), + [anon_sym_DASH_DASH] = ACTIONS(575), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(577), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(579), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(420)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(421)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(422)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1360), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(423)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1361), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(424)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1362), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(425)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1363), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(426)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1364), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(427)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1365), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(428)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1366), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(429)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1367), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(430)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1368), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(431)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1369), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(432)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1370), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(433)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1371), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(434)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(435)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1373), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(436)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1374), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(437)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1375), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(438)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1004), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(439)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1396), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(440)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(441)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(442)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1487), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(443)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1488), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(444)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1490), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(445)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1492), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(446)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1493), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(447)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1494), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(448)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1497), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(449)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1498), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(450)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1499), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(451)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1502), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(452)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1503), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(453)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1505), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(454)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1510), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(455)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1511), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(456)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1512), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(457)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(458)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1004), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(459)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1114), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(460)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1072), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(461)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1075), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(462)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1081), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(463)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1082), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(464)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1095), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(465)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1111), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(466)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1112), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(467)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1013), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(468)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1014), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(469)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1015), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(470)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1016), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(471)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1017), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(472)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1018), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(473)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1019), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(474)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(832), + [sym_expression] = STATE(1020), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2398), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2398), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(832), + [sym_subscript_expression] = STATE(832), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1633), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2398), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2316), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(816), + [sym_identifier] = ACTIONS(481), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(489), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(491), + [anon_sym_PLUS] = ACTIONS(493), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(495), + [anon_sym_TILDE] = ACTIONS(495), + [anon_sym_typeof] = ACTIONS(493), + [anon_sym_void] = ACTIONS(493), + [anon_sym_delete] = ACTIONS(493), + [anon_sym_PLUS_PLUS] = ACTIONS(497), + [anon_sym_DASH_DASH] = ACTIONS(497), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(501), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(505), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(475)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(476)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(477)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1417), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(478)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1418), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(479)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1419), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(480)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1420), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(481)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1421), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(482)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1422), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(483)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1427), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(484)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1428), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(485)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1429), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(486)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1430), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(487)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1431), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(488)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1433), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(489)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1438), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(490)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1439), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(491)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1441), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(492)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1516), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(493)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(494)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(495)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1515), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(496)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1481), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(497)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1518), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(498)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1520), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(499)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1521), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(500)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1522), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(501)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1523), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(502)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1525), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(503)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1526), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(504)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1527), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(505)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1528), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(506)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1530), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(507)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1531), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(508)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1533), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(509)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1534), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(510)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(926), + [sym_expression] = STATE(1537), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2441), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2441), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(926), + [sym_subscript_expression] = STATE(926), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1640), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2441), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(919), + [sym_identifier] = ACTIONS(839), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(843), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_TILDE] = ACTIONS(849), + [anon_sym_typeof] = ACTIONS(847), + [anon_sym_void] = ACTIONS(847), + [anon_sym_delete] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(851), + [anon_sym_DASH_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(853), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(855), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(511)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(512)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(513)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1155), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(514)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1156), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(515)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1157), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(516)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1158), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(517)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1159), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(518)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1160), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(519)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1161), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(520)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1162), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(521)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(522)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1164), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(523)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1165), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(524)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1166), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(525)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1167), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(526)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1168), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(527)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1169), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(528)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1170), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(529)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(530)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(531)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1171), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(532)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1172), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(533)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1173), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(534)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1174), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(535)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1175), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(536)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1176), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(537)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1177), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(538)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1178), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(539)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1179), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(540)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1180), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(541)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1181), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(542)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1182), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(543)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1183), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(544)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1184), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(545)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(546)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(899), + [sym_expression] = STATE(1186), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2463), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2463), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(899), + [sym_subscript_expression] = STATE(899), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1652), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2463), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2321), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(874), + [sym_identifier] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(717), + [anon_sym_yield] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(549), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(551), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_typeof] = ACTIONS(721), + [anon_sym_void] = ACTIONS(721), + [anon_sym_delete] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(727), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(729), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(547)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1205), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(548)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(549)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(550)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1343), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(551)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1344), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(552)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1345), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(553)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1346), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(554)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1347), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(555)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1348), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(556)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1349), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(557)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1480), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(558)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1350), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(559)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1351), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(560)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1352), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(561)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1353), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(562)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1354), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(563)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1355), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(564)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1356), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(565)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(916), + [sym_expression] = STATE(1357), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2471), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2471), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(916), + [sym_subscript_expression] = STATE(916), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1655), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2471), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(908), + [sym_identifier] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(779), + [anon_sym_yield] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(783), + [anon_sym_DASH] = ACTIONS(783), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(785), + [anon_sym_TILDE] = ACTIONS(785), + [anon_sym_typeof] = ACTIONS(783), + [anon_sym_void] = ACTIONS(783), + [anon_sym_delete] = ACTIONS(783), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(789), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(791), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(566)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1224), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(567)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1003), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(568)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1004), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(569)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1040), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(570)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1041), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(571)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1042), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(572)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1043), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(573)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1044), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(574)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1045), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(575)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1046), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(576)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1047), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(577)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1048), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(578)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1049), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(579)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1050), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(580)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1051), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(581)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1052), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(582)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1053), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(583)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1054), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(584)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1056), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(585)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1399), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(586)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(587)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(588)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1377), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(589)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1378), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(590)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1379), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(591)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1380), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(592)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1381), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(593)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1382), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(594)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1383), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(595)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1384), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(596)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1385), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(597)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1386), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(598)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1387), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(599)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1388), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(600)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1389), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(601)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1390), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(602)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1391), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(603)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(917), + [sym_expression] = STATE(1392), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2325), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2325), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(917), + [sym_subscript_expression] = STATE(917), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1631), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2325), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2455), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(909), + [sym_identifier] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(797), + [anon_sym_yield] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(801), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(803), + [anon_sym_PLUS] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(805), + [anon_sym_SLASH] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(809), + [anon_sym_TILDE] = ACTIONS(809), + [anon_sym_typeof] = ACTIONS(805), + [anon_sym_void] = ACTIONS(805), + [anon_sym_delete] = ACTIONS(805), + [anon_sym_PLUS_PLUS] = ACTIONS(811), + [anon_sym_DASH_DASH] = ACTIONS(811), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(813), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(815), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(604)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1393), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1985), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1985), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(894), + [sym_subscript_expression] = STATE(894), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1985), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(854), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1158), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(605)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1468), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(606)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1469), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(607)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(608)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(831), + [sym_expression] = STATE(1125), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2320), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2320), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(831), + [sym_subscript_expression] = STATE(831), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1646), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2320), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2442), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(821), + [sym_identifier] = ACTIONS(507), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(511), + [anon_sym_yield] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(515), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(519), + [anon_sym_DASH] = ACTIONS(519), + [anon_sym_SLASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(523), + [anon_sym_TILDE] = ACTIONS(523), + [anon_sym_typeof] = ACTIONS(519), + [anon_sym_void] = ACTIONS(519), + [anon_sym_delete] = ACTIONS(519), + [anon_sym_PLUS_PLUS] = ACTIONS(525), + [anon_sym_DASH_DASH] = ACTIONS(525), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(529), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(609)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1403), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(610)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1341), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(611)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(612)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(883), + [sym_expression] = STATE(1397), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2317), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2317), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1648), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2317), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2336), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(867), + [sym_identifier] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(585), + [anon_sym_yield] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(589), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(591), + [anon_sym_PLUS] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(593), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(593), + [anon_sym_void] = ACTIONS(593), + [anon_sym_delete] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(597), + [anon_sym_DASH_DASH] = ACTIONS(597), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(599), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(613)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1241), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(614)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1244), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(615)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1246), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(616)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(905), + [sym_expression] = STATE(1393), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2335), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2335), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(905), + [sym_subscript_expression] = STATE(905), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1643), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2335), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2337), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(862), + [sym_identifier] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(629), + [anon_sym_yield] = ACTIONS(631), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(633), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(635), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(639), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_typeof] = ACTIONS(637), + [anon_sym_void] = ACTIONS(637), + [anon_sym_delete] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(641), + [anon_sym_DASH_DASH] = ACTIONS(641), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(643), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(645), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(617)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(897), + [sym_expression] = STATE(1409), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2454), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2454), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(897), + [sym_subscript_expression] = STATE(897), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1649), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2454), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2431), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(873), + [sym_identifier] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(695), + [anon_sym_yield] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(699), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(701), + [anon_sym_PLUS] = ACTIONS(703), + [anon_sym_DASH] = ACTIONS(703), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(705), + [anon_sym_typeof] = ACTIONS(703), + [anon_sym_void] = ACTIONS(703), + [anon_sym_delete] = ACTIONS(703), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(709), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(618)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1338), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(619)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1253), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(620)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1248), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(621)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1278), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(622)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1282), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(623)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1285), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(624)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1452), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(625)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1286), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(626)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1291), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(627)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1292), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(628)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1293), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(629)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1294), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(630)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1295), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(631)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1296), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(632)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1297), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(633)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1500), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(634)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1298), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(635)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(918), + [sym_expression] = STATE(1506), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2383), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2383), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(918), + [sym_subscript_expression] = STATE(918), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1629), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2383), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2384), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(893), + [sym_identifier] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(673), + [anon_sym_yield] = ACTIONS(675), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(677), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(679), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(683), + [anon_sym_TILDE] = ACTIONS(683), + [anon_sym_typeof] = ACTIONS(681), + [anon_sym_void] = ACTIONS(681), + [anon_sym_delete] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(685), + [anon_sym_DASH_DASH] = ACTIONS(685), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(687), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(689), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(636)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1300), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(637)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(876), + [sym_expression] = STATE(1305), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2354), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2354), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(876), + [sym_subscript_expression] = STATE(876), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1641), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2354), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2352), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(845), + [sym_identifier] = ACTIONS(603), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(607), + [anon_sym_yield] = ACTIONS(609), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(611), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(617), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(621), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(623), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(638)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1249), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(639)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1250), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(640)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1251), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(641)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1517), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(642)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1485), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(643)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1491), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(644)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1496), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(645)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1501), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(646)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1507), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(647)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1513), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(648)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1514), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(649)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1519), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(650)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1524), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(651)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1529), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(652)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1532), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(653)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1535), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(654)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1536), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(655)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1538), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(656)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1539), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(657)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(922), + [sym_expression] = STATE(1540), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2365), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2365), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(922), + [sym_subscript_expression] = STATE(922), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1660), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2365), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2366), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(915), + [sym_identifier] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(735), + [anon_sym_yield] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(739), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(743), + [anon_sym_DASH] = ACTIONS(743), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_TILDE] = ACTIONS(745), + [anon_sym_typeof] = ACTIONS(743), + [anon_sym_void] = ACTIONS(743), + [anon_sym_delete] = ACTIONS(743), + [anon_sym_PLUS_PLUS] = ACTIONS(747), + [anon_sym_DASH_DASH] = ACTIONS(747), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(749), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(658)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(692), + [sym_expression] = STATE(1551), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(1846), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(1846), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(834), + [sym_subscript_expression] = STATE(834), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1653), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(1846), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2422), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(802), + [sym_identifier] = ACTIONS(1160), + [anon_sym_LBRACE] = ACTIONS(1009), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(327), + [anon_sym_yield] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(343), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(349), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(355), + [anon_sym_TILDE] = ACTIONS(355), + [anon_sym_typeof] = ACTIONS(351), + [anon_sym_void] = ACTIONS(351), + [anon_sym_delete] = ACTIONS(351), + [anon_sym_PLUS_PLUS] = ACTIONS(357), + [anon_sym_DASH_DASH] = ACTIONS(357), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(363), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(1162), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(659)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(878), + [sym_expression] = STATE(1339), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(1057), + [sym_object_pattern] = STATE(2333), + [sym_array] = STATE(1057), + [sym_array_pattern] = STATE(2333), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(1057), + [sym_function_expression] = STATE(1057), + [sym_generator_function] = STATE(1057), + [sym_arrow_function] = STATE(1057), + [sym_call_expression] = STATE(1057), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(878), + [sym_subscript_expression] = STATE(878), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1635), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2333), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(1057), + [sym_template_string] = STATE(1057), + [sym_regex] = STATE(1057), + [sym_meta_property] = STATE(1057), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2358), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(860), + [sym_identifier] = ACTIONS(647), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(651), + [anon_sym_yield] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(655), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(659), + [anon_sym_DASH] = ACTIONS(659), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(661), + [anon_sym_TILDE] = ACTIONS(661), + [anon_sym_typeof] = ACTIONS(659), + [anon_sym_void] = ACTIONS(659), + [anon_sym_delete] = ACTIONS(659), + [anon_sym_PLUS_PLUS] = ACTIONS(663), + [anon_sym_DASH_DASH] = ACTIONS(663), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(499), + [sym_private_property_identifier] = ACTIONS(665), + [sym_this] = ACTIONS(503), + [sym_super] = ACTIONS(503), + [sym_true] = ACTIONS(503), + [sym_false] = ACTIONS(503), + [sym_null] = ACTIONS(503), + [sym_undefined] = ACTIONS(667), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(660)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1259), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(661)] = { + [sym_import] = STATE(1903), + [sym_parenthesized_expression] = STATE(850), + [sym_expression] = STATE(1217), + [sym_primary_expression] = STATE(1006), + [sym_yield_expression] = STATE(1034), + [sym_object] = STATE(795), + [sym_object_pattern] = STATE(2409), + [sym_array] = STATE(795), + [sym_array_pattern] = STATE(2409), + [sym_jsx_element] = STATE(1034), + [sym_jsx_opening_element] = STATE(1694), + [sym_jsx_self_closing_element] = STATE(1034), + [sym_class] = STATE(795), + [sym_function_expression] = STATE(795), + [sym_generator_function] = STATE(795), + [sym_arrow_function] = STATE(795), + [sym_call_expression] = STATE(795), + [sym_new_expression] = STATE(1001), + [sym_await_expression] = STATE(1034), + [sym_member_expression] = STATE(850), + [sym_subscript_expression] = STATE(850), + [sym_assignment_expression] = STATE(1034), + [sym__augmented_assignment_lhs] = STATE(1632), + [sym_augmented_assignment_expression] = STATE(1034), + [sym__destructuring_pattern] = STATE(2409), + [sym_ternary_expression] = STATE(1034), + [sym_binary_expression] = STATE(1034), + [sym_unary_expression] = STATE(1034), + [sym_update_expression] = STATE(1034), + [sym_string] = STATE(795), + [sym_template_string] = STATE(795), + [sym_regex] = STATE(795), + [sym_meta_property] = STATE(795), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2464), + [aux_sym_export_statement_repeat1] = STATE(1924), + [aux_sym_non_reserved_keyword] = STATE(837), + [sym_identifier] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_import] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(31), + [anon_sym_await] = ACTIONS(35), + [anon_sym_yield] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(57), + [anon_sym_DQUOTE] = ACTIONS(59), + [anon_sym_SQUOTE] = ACTIONS(61), + [anon_sym_class] = ACTIONS(395), + [anon_sym_async] = ACTIONS(397), + [anon_sym_function] = ACTIONS(399), + [anon_sym_new] = ACTIONS(69), + [anon_sym_PLUS] = ACTIONS(71), + [anon_sym_DASH] = ACTIONS(71), + [anon_sym_SLASH] = ACTIONS(73), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(75), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [anon_sym_PLUS_PLUS] = ACTIONS(77), + [anon_sym_DASH_DASH] = ACTIONS(77), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(79), + [sym_number] = ACTIONS(81), + [sym_private_property_identifier] = ACTIONS(83), + [sym_this] = ACTIONS(85), + [sym_super] = ACTIONS(85), + [sym_true] = ACTIONS(85), + [sym_false] = ACTIONS(85), + [sym_null] = ACTIONS(85), + [sym_undefined] = ACTIONS(87), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(662)] = { + [sym_import] = STATE(1889), + [sym_parenthesized_expression] = STATE(921), + [sym_expression] = STATE(1446), + [sym_primary_expression] = STATE(935), + [sym_yield_expression] = STATE(946), + [sym_object] = STATE(966), + [sym_object_pattern] = STATE(2430), + [sym_array] = STATE(966), + [sym_array_pattern] = STATE(2430), + [sym_jsx_element] = STATE(946), + [sym_jsx_opening_element] = STATE(1684), + [sym_jsx_self_closing_element] = STATE(946), + [sym_class] = STATE(966), + [sym_function_expression] = STATE(966), + [sym_generator_function] = STATE(966), + [sym_arrow_function] = STATE(966), + [sym_call_expression] = STATE(966), + [sym_new_expression] = STATE(934), + [sym_await_expression] = STATE(946), + [sym_member_expression] = STATE(921), + [sym_subscript_expression] = STATE(921), + [sym_assignment_expression] = STATE(946), + [sym__augmented_assignment_lhs] = STATE(1637), + [sym_augmented_assignment_expression] = STATE(946), + [sym__destructuring_pattern] = STATE(2430), + [sym_ternary_expression] = STATE(946), + [sym_binary_expression] = STATE(946), + [sym_unary_expression] = STATE(946), + [sym_update_expression] = STATE(946), + [sym_string] = STATE(966), + [sym_template_string] = STATE(966), + [sym_regex] = STATE(966), + [sym_meta_property] = STATE(966), + [sym_decorator] = STATE(1661), + [sym_formal_parameters] = STATE(2419), + [aux_sym_export_statement_repeat1] = STATE(1885), + [aux_sym_non_reserved_keyword] = STATE(903), + [sym_identifier] = ACTIONS(753), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_import] = ACTIONS(323), + [anon_sym_LPAREN] = ACTIONS(325), + [anon_sym_await] = ACTIONS(757), + [anon_sym_yield] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_DQUOTE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(339), + [anon_sym_class] = ACTIONS(341), + [anon_sym_async] = ACTIONS(761), + [anon_sym_function] = ACTIONS(345), + [anon_sym_new] = ACTIONS(763), + [anon_sym_PLUS] = ACTIONS(765), + [anon_sym_DASH] = ACTIONS(765), + [anon_sym_SLASH] = ACTIONS(353), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_TILDE] = ACTIONS(767), + [anon_sym_typeof] = ACTIONS(765), + [anon_sym_void] = ACTIONS(765), + [anon_sym_delete] = ACTIONS(765), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(359), + [sym_number] = ACTIONS(361), + [sym_private_property_identifier] = ACTIONS(771), + [sym_this] = ACTIONS(365), + [sym_super] = ACTIONS(365), + [sym_true] = ACTIONS(365), + [sym_false] = ACTIONS(365), + [sym_null] = ACTIONS(365), + [sym_undefined] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(89), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(663)] = { + [sym_string] = STATE(2216), + [sym_formal_parameters] = STATE(2326), + [sym__property_name] = STATE(2216), + [sym_computed_property_name] = STATE(2216), + [aux_sym_non_reserved_keyword] = STATE(2169), + [sym_identifier] = ACTIONS(1164), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_LPAREN] = ACTIONS(1168), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_function] = ACTIONS(1176), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(95), + [sym_number] = ACTIONS(1178), + [sym_private_property_identifier] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1166), + [anon_sym_set] = ACTIONS(1166), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(664)] = { + [sym_string] = STATE(2216), + [sym__property_name] = STATE(2216), + [sym_computed_property_name] = STATE(2216), + [aux_sym_non_reserved_keyword] = STATE(2408), + [sym_identifier] = ACTIONS(1180), + [anon_sym_STAR] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(95), + [anon_sym_LPAREN] = ACTIONS(95), + [anon_sym_SEMI] = ACTIONS(95), + [anon_sym_in] = ACTIONS(95), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_EQ] = ACTIONS(95), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_LT] = ACTIONS(95), + [anon_sym_GT] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(1174), + [anon_sym_async] = ACTIONS(1182), + [anon_sym_EQ_GT] = ACTIONS(95), + [sym_optional_chain] = ACTIONS(95), + [anon_sym_PLUS_EQ] = ACTIONS(95), + [anon_sym_DASH_EQ] = ACTIONS(95), + [anon_sym_STAR_EQ] = ACTIONS(95), + [anon_sym_SLASH_EQ] = ACTIONS(95), + [anon_sym_PERCENT_EQ] = ACTIONS(95), + [anon_sym_CARET_EQ] = ACTIONS(95), + [anon_sym_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_EQ] = ACTIONS(95), + [anon_sym_GT_GT_EQ] = ACTIONS(95), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(95), + [anon_sym_LT_LT_EQ] = ACTIONS(95), + [anon_sym_STAR_STAR_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP_EQ] = ACTIONS(95), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(95), + [anon_sym_AMP_AMP] = ACTIONS(95), + [anon_sym_PIPE_PIPE] = ACTIONS(95), + [anon_sym_GT_GT] = ACTIONS(95), + [anon_sym_GT_GT_GT] = ACTIONS(95), + [anon_sym_LT_LT] = ACTIONS(95), + [anon_sym_AMP] = ACTIONS(95), + [anon_sym_CARET] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(95), + [anon_sym_PLUS] = ACTIONS(95), + [anon_sym_DASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_PERCENT] = ACTIONS(95), + [anon_sym_STAR_STAR] = ACTIONS(95), + [anon_sym_LT_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ] = ACTIONS(95), + [anon_sym_EQ_EQ_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ] = ACTIONS(95), + [anon_sym_BANG_EQ_EQ] = ACTIONS(95), + [anon_sym_GT_EQ] = ACTIONS(95), + [anon_sym_QMARK_QMARK] = ACTIONS(95), + [anon_sym_instanceof] = ACTIONS(95), + [anon_sym_PLUS_PLUS] = ACTIONS(95), + [anon_sym_DASH_DASH] = ACTIONS(95), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(95), + [sym_number] = ACTIONS(1178), + [sym_private_property_identifier] = ACTIONS(1178), + [anon_sym_get] = ACTIONS(1166), + [anon_sym_set] = ACTIONS(1166), + [sym_html_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1178), 2, + sym_number, + sym_private_property_identifier, + STATE(2216), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [83] = 13, + ACTIONS(1184), 1, + sym_identifier, + ACTIONS(1186), 1, + anon_sym_STAR, + ACTIONS(1188), 1, + anon_sym_LBRACE, + ACTIONS(1192), 1, + anon_sym_DOT, + ACTIONS(1194), 1, + anon_sym_DQUOTE, + ACTIONS(1196), 1, + anon_sym_SQUOTE, + STATE(1936), 1, + sym_string, + STATE(2239), 1, + sym_import_clause, + STATE(2258), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1190), 2, + anon_sym_LPAREN, + sym_optional_chain, + STATE(2359), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(95), 49, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [174] = 7, + ACTIONS(1202), 1, + anon_sym_catch, + ACTIONS(1204), 1, + anon_sym_finally, + STATE(679), 1, + sym_catch_clause, + STATE(768), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1198), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1200), 39, + 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_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, + [251] = 7, + ACTIONS(1206), 1, + sym_identifier, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + STATE(1929), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1841), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + aux_sym_non_reserved_keyword, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [328] = 7, + ACTIONS(1206), 1, + sym_identifier, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + STATE(1891), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1841), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + aux_sym_non_reserved_keyword, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [405] = 4, + ACTIONS(887), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(857), 18, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(859), 41, + 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_catch, + anon_sym_finally, + anon_sym_yield, + 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, + [476] = 4, + ACTIONS(1212), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(863), 18, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(865), 41, + 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_catch, + anon_sym_finally, + anon_sym_yield, + 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, + [547] = 7, + ACTIONS(1206), 1, + sym_identifier, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + STATE(1891), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1841), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + aux_sym_non_reserved_keyword, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [623] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(877), 18, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(879), 41, + 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_catch, + anon_sym_finally, + anon_sym_yield, + 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, + [691] = 8, + ACTIONS(1214), 1, + sym_identifier, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + STATE(1031), 1, + sym_class_body, + STATE(1901), 1, + aux_sym_non_reserved_keyword, + STATE(2177), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 53, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [769] = 7, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1220), 1, + sym_identifier, + STATE(1891), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1780), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + aux_sym_non_reserved_keyword, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [845] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(863), 18, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(865), 41, + 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_catch, + anon_sym_finally, + anon_sym_yield, + 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, + [913] = 5, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + ACTIONS(1224), 21, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [984] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1228), 1, + sym_identifier, + ACTIONS(1230), 1, + anon_sym_function, + STATE(2429), 1, + aux_sym_non_reserved_keyword, + STATE(2434), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 53, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [1059] = 5, + ACTIONS(1204), 1, + anon_sym_finally, + STATE(764), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1232), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1234), 39, + 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_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, + [1130] = 11, + ACTIONS(1236), 1, + anon_sym_RBRACE, + ACTIONS(1238), 1, + anon_sym_LPAREN, + ACTIONS(1241), 1, + anon_sym_COLON, + ACTIONS(1244), 1, + anon_sym_EQ, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, + STATE(2028), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [1212] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(869), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(871), 39, + 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_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, + [1278] = 4, + ACTIONS(927), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(919), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(921), 39, + 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_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, + [1346] = 4, + ACTIONS(917), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(909), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(911), 39, + 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_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, + [1414] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 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(1252), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [1480] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(863), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(865), 39, + 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_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, + [1546] = 4, + ACTIONS(1254), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(857), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(859), 39, + 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_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, + [1614] = 4, + ACTIONS(937), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(929), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(931), 39, + 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_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, + [1682] = 4, + ACTIONS(947), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(939), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(941), 39, + 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_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, + [1750] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1256), 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(1258), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [1816] = 4, + ACTIONS(907), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(899), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(901), 39, + 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_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, + [1884] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(877), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(879), 39, + 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_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, + [1950] = 5, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + ACTIONS(1224), 21, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [2020] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1264), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1260), 16, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT, + 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(1262), 39, + 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_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, + [2088] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1266), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1268), 40, + 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_finally, + anon_sym_yield, + 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, + [2154] = 11, + ACTIONS(1238), 1, + anon_sym_LPAREN, + ACTIONS(1241), 1, + anon_sym_COLON, + ACTIONS(1244), 1, + anon_sym_EQ, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1270), 1, + anon_sym_RBRACE, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, + STATE(2028), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [2236] = 4, + ACTIONS(957), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(949), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(951), 39, + 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_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, + [2304] = 4, + ACTIONS(967), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(959), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(961), 39, + 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_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, + [2372] = 5, + ACTIONS(1276), 1, + anon_sym_else, + STATE(743), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1272), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1274), 38, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + 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, + [2442] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 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(1280), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [2508] = 4, + ACTIONS(1282), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(863), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(865), 39, + 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_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, + [2576] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1284), 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(1286), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [2642] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1288), 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(1290), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [2708] = 4, + ACTIONS(897), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(889), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(891), 39, + 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_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, + [2776] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1292), 18, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LT, + 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(1294), 39, + 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_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, + [2842] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1296), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1298), 39, + 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_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, + [2908] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1300), 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(1302), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [2974] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1298), 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(1296), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [3040] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1304), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1306), 40, + 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_finally, + anon_sym_yield, + 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, + [3106] = 11, + ACTIONS(1238), 1, + anon_sym_LPAREN, + ACTIONS(1241), 1, + anon_sym_COLON, + ACTIONS(1244), 1, + anon_sym_EQ, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1308), 1, + anon_sym_RBRACE, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, + STATE(2021), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [3188] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(873), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(875), 39, + 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_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, + [3254] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1310), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1312), 39, + 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_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, + [3319] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1314), 1, + sym_identifier, + ACTIONS(1316), 1, + anon_sym_function, + STATE(2319), 1, + aux_sym_non_reserved_keyword, + STATE(2326), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [3392] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1318), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1320), 39, + 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_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, + [3457] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1322), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1324), 39, + 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_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, + [3522] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1326), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1328), 39, + 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_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, + [3587] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1332), 39, + 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_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, + [3652] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1332), 39, + 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_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, + [3717] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1334), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1336), 39, + 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_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, + [3782] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1338), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1340), 39, + 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_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, + [3847] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1342), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1344), 39, + 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_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, + [3912] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1332), 39, + 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_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, + [3977] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1332), 39, + 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_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, + [4042] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1332), 39, + 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_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, + [4107] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1346), 1, + sym_identifier, + ACTIONS(1348), 1, + anon_sym_STAR, + STATE(2088), 1, + sym_formal_parameters, + STATE(2275), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [4180] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1350), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1352), 39, + 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_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, + [4245] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1330), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1332), 39, + 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_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, + [4310] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1354), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1356), 39, + 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_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, + [4375] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1358), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1360), 39, + 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_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, + [4440] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1362), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1364), 39, + 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_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, + [4505] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1366), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1368), 39, + 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_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, + [4570] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1370), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1372), 39, + 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_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, + [4635] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1370), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1372), 39, + 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_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, + [4700] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1374), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1376), 39, + 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_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, + [4765] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1378), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1380), 39, + 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_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, + [4830] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1382), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1384), 39, + 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_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, + [4895] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1386), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1388), 39, + 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_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, + [4960] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1390), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1392), 39, + 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_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, + [5025] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1394), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1396), 39, + 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_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, + [5090] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1398), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1400), 39, + 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_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, + [5155] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1402), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1404), 39, + 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_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, + [5220] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1406), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1408), 39, + 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_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, + [5285] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1410), 1, + sym_identifier, + ACTIONS(1412), 1, + anon_sym_function, + STATE(2401), 1, + sym_formal_parameters, + STATE(2473), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [5358] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1414), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1416), 39, + 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_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, + [5423] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1418), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1420), 39, + 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_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, + [5488] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1314), 1, + sym_identifier, + ACTIONS(1422), 1, + anon_sym_function, + STATE(2319), 1, + aux_sym_non_reserved_keyword, + STATE(2326), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [5561] = 5, + ACTIONS(1424), 1, + sym_identifier, + STATE(2119), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1426), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [5630] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1430), 39, + 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_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, + [5695] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1432), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1434), 39, + 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_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, + [5760] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1436), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1438), 39, + 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_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, + [5825] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1440), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1442), 39, + 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_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, + [5890] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1444), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1446), 39, + 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_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, + [5955] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1448), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1450), 39, + 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_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, + [6020] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1452), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1454), 39, + 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_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, + [6085] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1456), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1458), 39, + 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_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, + [6150] = 6, + ACTIONS(1208), 1, + anon_sym_LBRACE, + ACTIONS(1210), 1, + anon_sym_LBRACK, + ACTIONS(1460), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2008), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + aux_sym_non_reserved_keyword, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [6221] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1462), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1464), 39, + 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_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, + [6286] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1466), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1468), 39, + 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_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, + [6351] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1470), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1472), 39, + 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_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, + [6416] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1474), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1476), 39, + 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_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, + [6481] = 5, + ACTIONS(1478), 1, + sym_identifier, + STATE(2129), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [6550] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1482), 1, + sym_identifier, + STATE(2324), 1, + aux_sym_non_reserved_keyword, + STATE(2327), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [6623] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1484), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1486), 39, + 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_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, + [6688] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1488), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1490), 39, + 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_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, + [6753] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1492), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1494), 39, + 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_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, + [6818] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1496), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1498), 39, + 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_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, + [6883] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1500), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1502), 39, + 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_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, + [6948] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1504), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1506), 39, + 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_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, + [7013] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1508), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1510), 39, + 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_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, + [7078] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1512), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1514), 39, + 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_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, + [7143] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1516), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1518), 39, + 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_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, + [7208] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1520), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1522), 39, + 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_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, + [7273] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1412), 1, + anon_sym_function, + ACTIONS(1524), 1, + sym_identifier, + STATE(2443), 1, + aux_sym_non_reserved_keyword, + STATE(2444), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7346] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1526), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1528), 39, + 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_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, + [7411] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1530), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1532), 39, + 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_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, + [7476] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1534), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1536), 39, + 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_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, + [7541] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1538), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1540), 39, + 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_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, + [7606] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1542), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1544), 39, + 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_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, + [7671] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1548), 39, + 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_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, + [7736] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1550), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1552), 39, + 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_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, + [7801] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1554), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1556), 39, + 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_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, + [7866] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1546), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1548), 39, + 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_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, + [7931] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1558), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1560), 39, + 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_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, + [7996] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1366), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1368), 39, + 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_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, + [8061] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1176), 1, + anon_sym_function, + ACTIONS(1314), 1, + sym_identifier, + STATE(2319), 1, + aux_sym_non_reserved_keyword, + STATE(2326), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 51, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8134] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1562), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1564), 39, + 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_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, + [8199] = 5, + ACTIONS(1566), 1, + anon_sym_LPAREN, + ACTIONS(1568), 1, + anon_sym_await, + STATE(49), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8267] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1314), 1, + sym_identifier, + ACTIONS(1412), 1, + anon_sym_function, + STATE(2319), 1, + aux_sym_non_reserved_keyword, + STATE(2326), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 50, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8339] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1570), 1, + sym_identifier, + STATE(2380), 1, + aux_sym_non_reserved_keyword, + STATE(2397), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 50, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8411] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1572), 1, + sym_identifier, + STATE(2387), 1, + aux_sym_non_reserved_keyword, + STATE(2390), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 50, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8483] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1574), 1, + sym_identifier, + STATE(2355), 1, + aux_sym_non_reserved_keyword, + STATE(2356), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 50, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8555] = 5, + ACTIONS(1576), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(95), 18, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [8623] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1578), 1, + sym_identifier, + STATE(2385), 1, + aux_sym_non_reserved_keyword, + STATE(2386), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 50, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8695] = 5, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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(1222), 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, + [8763] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1580), 1, + sym_identifier, + STATE(2432), 1, + aux_sym_non_reserved_keyword, + STATE(2433), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 50, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8835] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(95), 19, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [8901] = 4, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(667), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 53, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8967] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1412), 1, + anon_sym_function, + ACTIONS(1584), 1, + sym_identifier, + STATE(2424), 1, + aux_sym_non_reserved_keyword, + STATE(2435), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9038] = 5, + ACTIONS(1586), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [9105] = 7, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1576), 1, + anon_sym_EQ, + ACTIONS(1588), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [9176] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1300), 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(1302), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [9239] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 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(1252), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [9302] = 7, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1592), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1590), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [9373] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1590), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [9442] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1256), 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(1258), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [9505] = 7, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1576), 1, + anon_sym_EQ, + ACTIONS(1594), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [9576] = 5, + ACTIONS(1596), 1, + anon_sym_else, + STATE(743), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1272), 16, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1274), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [9643] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1288), 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(1290), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [9706] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1598), 1, + sym_identifier, + STATE(2420), 1, + aux_sym_non_reserved_keyword, + STATE(2421), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9777] = 7, + ACTIONS(1592), 1, + anon_sym_EQ_GT, + ACTIONS(1602), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [9848] = 5, + ACTIONS(1605), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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(1222), 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, + [9915] = 6, + ACTIONS(1602), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [9984] = 4, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(61), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10049] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1609), 1, + sym_identifier, + STATE(2349), 1, + aux_sym_non_reserved_keyword, + STATE(2350), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10120] = 4, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10185] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1611), 1, + sym_identifier, + STATE(2456), 1, + aux_sym_non_reserved_keyword, + STATE(2457), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10256] = 6, + ACTIONS(1586), 1, + anon_sym_EQ, + ACTIONS(1613), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [10325] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1298), 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(1296), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [10388] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1613), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [10457] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10520] = 4, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10585] = 6, + ACTIONS(1605), 1, + anon_sym_EQ, + ACTIONS(1617), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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(1222), 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, + [10654] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1278), 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(1280), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [10717] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1284), 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(1286), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [10780] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1422), 1, + anon_sym_function, + ACTIONS(1584), 1, + sym_identifier, + STATE(2424), 1, + aux_sym_non_reserved_keyword, + STATE(2435), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10851] = 7, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1576), 1, + anon_sym_EQ, + ACTIONS(1619), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [10922] = 5, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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(1222), 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, + [10989] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1316), 1, + anon_sym_function, + ACTIONS(1584), 1, + sym_identifier, + STATE(2424), 1, + aux_sym_non_reserved_keyword, + STATE(2435), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [11060] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1617), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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(1222), 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, + [11129] = 4, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(2168), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 52, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [11194] = 7, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(1230), 1, + anon_sym_function, + ACTIONS(1621), 1, + sym_identifier, + STATE(2368), 1, + aux_sym_non_reserved_keyword, + STATE(2369), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 49, + anon_sym_STAR, + anon_sym_in, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [11265] = 5, + ACTIONS(1605), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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(1222), 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, + [11331] = 5, + ACTIONS(1586), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [11397] = 6, + ACTIONS(1602), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [11465] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1590), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [11533] = 8, + ACTIONS(1623), 1, + anon_sym_in, + ACTIONS(1626), 1, + anon_sym_of, + ACTIONS(1628), 1, + anon_sym_EQ, + ACTIONS(1630), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [11605] = 7, + ACTIONS(1623), 1, + anon_sym_in, + ACTIONS(1626), 1, + anon_sym_of, + ACTIONS(1628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [11675] = 6, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1576), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [11743] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [11811] = 5, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [11877] = 6, + ACTIONS(1246), 1, + anon_sym_EQ_GT, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [11945] = 5, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12010] = 5, + ACTIONS(1636), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12075] = 8, + ACTIONS(1600), 1, + anon_sym_COMMA, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(1641), 1, + anon_sym_RBRACK, + ACTIONS(1644), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12146] = 7, + ACTIONS(1600), 1, + anon_sym_COMMA, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(1641), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12215] = 6, + ACTIONS(1636), 1, + anon_sym_EQ, + ACTIONS(1646), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12282] = 7, + ACTIONS(1623), 1, + anon_sym_in, + ACTIONS(1626), 1, + anon_sym_of, + ACTIONS(1628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12351] = 5, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12416] = 7, + ACTIONS(1646), 1, + anon_sym_EQ_GT, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12485] = 6, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12552] = 5, + ACTIONS(1576), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [12617] = 7, + ACTIONS(1653), 1, + anon_sym_EQ, + ACTIONS(1656), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12686] = 6, + ACTIONS(1653), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12753] = 7, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(1661), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12822] = 7, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(1656), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12891] = 6, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [12958] = 5, + ACTIONS(1663), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13023] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1665), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13090] = 7, + ACTIONS(1661), 1, + anon_sym_EQ_GT, + ACTIONS(1667), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13159] = 6, + ACTIONS(1667), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13226] = 6, + ACTIONS(1663), 1, + anon_sym_EQ, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13293] = 6, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13360] = 6, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(1656), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13427] = 5, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1224), 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(1222), 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, + [13492] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1656), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13559] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13626] = 5, + ACTIONS(1628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13691] = 6, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(1661), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13758] = 5, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13823] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1661), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13890] = 5, + ACTIONS(1674), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [13955] = 6, + ACTIONS(1628), 1, + anon_sym_EQ, + ACTIONS(1630), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14022] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1630), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14089] = 6, + ACTIONS(1665), 1, + anon_sym_EQ_GT, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14156] = 6, + ACTIONS(1630), 1, + anon_sym_EQ_GT, + ACTIONS(1674), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14223] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1646), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14290] = 5, + ACTIONS(1636), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14354] = 5, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14418] = 5, + ACTIONS(1663), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14482] = 6, + ACTIONS(1650), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14548] = 6, + ACTIONS(1667), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14614] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1680), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1678), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [14674] = 7, + ACTIONS(1600), 1, + anon_sym_COMMA, + ACTIONS(1638), 1, + anon_sym_EQ, + ACTIONS(1641), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14742] = 5, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14806] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1682), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [14866] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1296), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1298), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [14926] = 6, + ACTIONS(1653), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [14992] = 5, + ACTIONS(1686), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15056] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1690), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1688), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [15116] = 6, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(1692), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15182] = 5, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15246] = 5, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15310] = 5, + ACTIONS(1628), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15374] = 6, + ACTIONS(1644), 1, + anon_sym_EQ_GT, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15440] = 6, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15506] = 8, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1592), 1, + anon_sym_EQ_GT, + ACTIONS(1623), 1, + anon_sym_in, + ACTIONS(1626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15576] = 7, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1623), 1, + anon_sym_in, + ACTIONS(1626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15644] = 5, + ACTIONS(1672), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15708] = 5, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15772] = 5, + ACTIONS(1674), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15836] = 5, + ACTIONS(1700), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15900] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1692), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [15966] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1702), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16032] = 6, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(1704), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16098] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1644), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16164] = 5, + ACTIONS(1648), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16228] = 6, + ACTIONS(1634), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16294] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1704), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16360] = 6, + ACTIONS(1644), 1, + anon_sym_EQ_GT, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16426] = 6, + ACTIONS(1700), 1, + anon_sym_EQ, + ACTIONS(1706), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16492] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1706), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16558] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1710), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1708), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [16618] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1682), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [16678] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1682), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [16738] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1684), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1682), 36, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + 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, + [16798] = 6, + ACTIONS(1686), 1, + anon_sym_EQ, + ACTIONS(1702), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16864] = 5, + ACTIONS(1698), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16927] = 5, + ACTIONS(1700), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [16990] = 5, + ACTIONS(1694), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17053] = 6, + ACTIONS(1592), 1, + anon_sym_EQ_GT, + ACTIONS(1712), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17118] = 5, + ACTIONS(1712), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(95), 16, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17181] = 5, + ACTIONS(1696), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17244] = 5, + ACTIONS(1686), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17307] = 5, + ACTIONS(1676), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17370] = 7, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1623), 1, + anon_sym_in, + ACTIONS(1626), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17437] = 6, + ACTIONS(1226), 1, + anon_sym_EQ, + ACTIONS(1592), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17502] = 5, + ACTIONS(1712), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1224), 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(1248), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1222), 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, + [17564] = 5, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(1714), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(859), 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(857), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [17620] = 7, + ACTIONS(359), 1, + anon_sym_BQUOTE, + ACTIONS(1720), 1, + anon_sym_LPAREN, + STATE(961), 1, + sym_template_string, + STATE(974), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1716), 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(1718), 27, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_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, + [17680] = 10, + ACTIONS(359), 1, + anon_sym_BQUOTE, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + sym_optional_chain, + STATE(961), 1, + sym_template_string, + STATE(974), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1716), 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(1718), 24, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [17746] = 4, + ACTIONS(1714), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(859), 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(857), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [17799] = 9, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1728), 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(1730), 23, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [17862] = 8, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1736), 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(1738), 25, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [17923] = 9, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1740), 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(1742), 23, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [17986] = 5, + ACTIONS(359), 1, + anon_sym_BQUOTE, + STATE(961), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1744), 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(1746), 28, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18041] = 8, + ACTIONS(359), 1, + anon_sym_BQUOTE, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + sym_optional_chain, + STATE(961), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1744), 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(1746), 25, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [18102] = 4, + ACTIONS(1748), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(865), 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(863), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18155] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1750), 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(1752), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18205] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1754), 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(1756), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18255] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1758), 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(1760), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18305] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1762), 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(1764), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18355] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1766), 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(1768), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18405] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1770), 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(1772), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18455] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1774), 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(1776), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18505] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1778), 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(1780), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18555] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1782), 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(1784), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18605] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1744), 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(1746), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18655] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1786), 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(1788), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18705] = 5, + ACTIONS(1797), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1794), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1790), 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(1792), 24, + 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, + [18759] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1799), 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(1801), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18809] = 5, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1803), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(881), 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(883), 24, + 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, + [18863] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(865), 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(863), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18913] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1806), 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(1808), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [18963] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(879), 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(877), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19013] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1810), 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(1812), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19063] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1814), 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(1816), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19113] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(963), 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(965), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19163] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(953), 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(955), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19213] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(893), 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(895), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19263] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(903), 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(905), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19313] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1818), 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(1820), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19363] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1814), 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(1816), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19413] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1822), 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(1824), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19463] = 5, + ACTIONS(1833), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1830), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1826), 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(1828), 24, + 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, + [19517] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1835), 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(1837), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19567] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1839), 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(1841), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19617] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1222), 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(1224), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19667] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1843), 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(1845), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19717] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(933), 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(935), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19767] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(913), 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(915), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19817] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(923), 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(925), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19867] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(875), 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(873), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19917] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1847), 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(1849), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [19967] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1851), 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(1853), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20017] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1855), 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(1857), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20067] = 4, + ACTIONS(1863), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1859), 13, + 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, + anon_sym_instanceof, + ACTIONS(1861), 27, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20119] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1865), 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(1867), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20169] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1869), 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(1871), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20219] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1873), 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(1875), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20269] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1877), 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(1879), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20319] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1881), 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(1883), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20369] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1885), 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(1887), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20419] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1889), 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(1891), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20469] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1893), 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(1895), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20519] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1897), 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(1899), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20569] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1901), 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(1903), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20619] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1905), 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(1907), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [20669] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1909), 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(1911), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20719] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1909), 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(1911), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20769] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1909), 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(1911), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20819] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(943), 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(945), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20869] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1913), 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(1915), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20919] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1909), 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(1911), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [20969] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(871), 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(869), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, - [233] = 12, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21019] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1917), 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(1919), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(885), 1, + anon_sym_SEMI, + 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, + [21069] = 4, + ACTIONS(1833), 1, anon_sym_EQ, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - STATE(1707), 1, - sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(949), 3, + ACTIONS(1826), 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(1828), 27, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(880), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + 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, + [21120] = 4, + ACTIONS(1797), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1790), 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(1792), 27, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + 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, + [21171] = 10, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1927), 1, sym_optional_chain, + STATE(1099), 1, + sym_arguments, + STATE(1107), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1716), 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(1718), 21, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [21234] = 7, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + STATE(1099), 1, + sym_arguments, + STATE(1107), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1716), 12, 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, - [322] = 13, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, - STATE(1707), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(880), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + ACTIONS(1718), 24, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + [21291] = 4, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(881), 12, 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] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(932), 1, - anon_sym_EQ_GT, - STATE(1619), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(925), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, + ACTIONS(883), 27, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + [21342] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1786), 12, 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, - [498] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_function, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - sym_identifier, - STATE(1633), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(909), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, + ACTIONS(1788), 27, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + 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, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + [21390] = 5, + ACTIONS(79), 1, + anon_sym_BQUOTE, + STATE(1107), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1744), 12, 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, - [584] = 5, - ACTIONS(940), 1, - anon_sym_finally, - STATE(375), 1, - sym_finally_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(952), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - 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(954), 42, - 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_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, - [658] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - sym_identifier, - ACTIONS(911), 1, - anon_sym_function, - STATE(1633), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(909), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, + ACTIONS(1746), 25, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + [21442] = 4, + ACTIONS(1797), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1790), 12, 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, - [744] = 4, - ACTIONS(956), 1, + ACTIONS(1792), 26, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(503), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(505), 42, - 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_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, - [815] = 4, - ACTIONS(958), 1, - sym__automatic_semicolon, + [21492] = 9, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(501), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1740), 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_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, - [886] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1742), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [21552] = 8, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 18, + ACTIONS(1736), 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(1738), 22, sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(501), 42, - 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_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, - [955] = 4, - ACTIONS(539), 1, + [21610] = 5, + ACTIONS(861), 1, sym__automatic_semicolon, + ACTIONS(885), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(859), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - 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(533), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, - [1026] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(960), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(857), 25, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(962), 42, - 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_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, - [1095] = 3, + [21662] = 8, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1927), 1, + sym_optional_chain, + STATE(1107), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 18, + ACTIONS(1744), 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(1746), 22, sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(521), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [21720] = 4, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(881), 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_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, - [1164] = 4, - ACTIONS(549), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(883), 26, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(541), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(543), 42, - 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_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, - [1235] = 3, + [21770] = 9, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(964), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(966), 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_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1728), 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_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, - [1304] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1730), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [21830] = 6, + ACTIONS(885), 1, anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + ACTIONS(887), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, - sym__automatic_semicolon, + ACTIONS(857), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(881), 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(883), 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, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + [21884] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1806), 12, 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, - [1391] = 13, - ACTIONS(882), 1, + ACTIONS(1808), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, + anon_sym_SEMI, anon_sym_of, - STATE(1619), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(925), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, - sym__ternary_qmark, + 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, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [21932] = 4, + ACTIONS(1833), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1826), 12, 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, - [1480] = 5, - ACTIONS(972), 1, - anon_sym_else, - STATE(404), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(968), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1828), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(970), 41, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - 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, - [1553] = 3, + [21982] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(974), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1778), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - 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(976), 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_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, - [1622] = 4, - ACTIONS(579), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1780), 26, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(571), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(573), 42, - 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_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, - [1693] = 3, + [22029] = 20, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(523), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(525), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [1762] = 4, - ACTIONS(589), 1, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 10, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(581), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [22110] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(583), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [1833] = 4, - ACTIONS(599), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(591), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [22193] = 12, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(593), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 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_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, - [1904] = 4, - ACTIONS(609), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 17, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(601), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [22258] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(603), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1945), 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_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, - [1975] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [22319] = 17, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + ACTIONS(1933), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1937), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 12, + 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_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [22394] = 23, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1943), 1, anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, anon_sym_PIPE, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1955), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [2062] = 4, - ACTIONS(559), 1, + ACTIONS(1935), 7, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [22481] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1967), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [22572] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(553), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [2133] = 4, - ACTIONS(569), 1, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1973), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1909), 12, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - 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(563), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, - [2204] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1911), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [22710] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(527), 18, + ACTIONS(1909), 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(1911), 26, sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(529), 42, - 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_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, - [2273] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(978), 1, - sym_identifier, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - STATE(1704), 1, - sym_formal_parameters, + [22757] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(980), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + ACTIONS(1909), 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(1911), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 22, + [22804] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1909), 12, 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, - [2358] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(978), 1, - sym_identifier, - ACTIONS(984), 1, - anon_sym_EQ_GT, - STATE(1704), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(980), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, + ACTIONS(1911), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 22, + [22851] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1917), 12, 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, + ACTIONS(1919), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - [2443] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [22898] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(990), 2, + ACTIONS(1913), 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(1915), 26, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(986), 16, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(988), 42, - 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_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, - [2514] = 3, + [22945] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(992), 18, + ACTIONS(1754), 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(1756), 26, sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(994), 42, - 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_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, - [2583] = 3, + [22992] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(996), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1758), 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(1760), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(998), 42, - 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_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, - [2651] = 3, + [23039] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1000), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1762), 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(1764), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1002), 42, - 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_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, - [2719] = 3, + [23086] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1004), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1766), 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(1768), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1006), 42, - 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_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, - [2787] = 3, + [23133] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1008), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1799), 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(1801), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1010), 42, - 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_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, - [2855] = 3, + [23180] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1770), 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(1772), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1014), 42, - 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_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, - [2923] = 3, + [23227] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1016), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1774), 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(1776), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1018), 42, - 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_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, - [2991] = 3, + [23274] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1020), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1744), 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(1746), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1022), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [23321] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1897), 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_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, - [3059] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1899), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, + [23368] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1024), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(923), 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(925), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1026), 42, - 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_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, - [3127] = 3, + [23415] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1901), 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(1903), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1030), 42, - 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_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, - [3195] = 3, + [23462] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1032), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1810), 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(1812), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1034), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [23509] = 5, + ACTIONS(947), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(939), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(943), 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_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, - [3263] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1036), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(945), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1038), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [23560] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [3331] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1977), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [23651] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1040), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2011), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [23742] = 15, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1042), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [3399] = 3, + ACTIONS(1945), 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(1935), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [23813] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1044), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1046), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1945), 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_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, - [3467] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [23874] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1048), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1050), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [3535] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [23957] = 22, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1052), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1054), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [3603] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24042] = 13, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1056), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1058), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1995), 2, 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, - [3671] = 3, + ACTIONS(1945), 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(1935), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [24109] = 19, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1060), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1062), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24188] = 20, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, 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, - [3739] = 3, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24269] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1064), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1066), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [3807] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24352] = 12, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1068), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1070), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 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_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, - [3875] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [24417] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1072), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1074), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1945), 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_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, - [3943] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [24478] = 17, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [4011] = 3, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 12, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24553] = 23, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1080), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1082), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [24640] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [4079] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1967), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24731] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(943), 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(945), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [24778] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [4147] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1973), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [24869] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1084), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1222), 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(1224), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1086), 42, - 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_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, - [4215] = 3, + [24916] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1088), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1893), 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(1895), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1090), 42, - 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_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, - [4283] = 3, + [24963] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1092), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1782), 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(1784), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1094), 42, - 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_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, - [4351] = 3, + [25010] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1096), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1814), 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(1816), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1098), 42, - 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_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, - [4419] = 3, + [25057] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1835), 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(1837), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - 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_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, - [4487] = 3, + [25104] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1100), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1905), 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(1907), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1102), 42, - 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_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, - [4555] = 3, + [25151] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(953), 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(955), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - 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_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, - [4623] = 3, + [25198] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1104), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(913), 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(915), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1106), 42, - 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_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, - [4691] = 3, + [25245] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1108), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(893), 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(895), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1110), 42, - 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_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, - [4759] = 3, + [25292] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(903), 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(905), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - 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_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, - [4827] = 3, + [25339] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1114), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [4895] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1076), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1871), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [25430] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1078), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [4963] = 3, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1891), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [25521] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1915), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [25612] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1756), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1118), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [25703] = 5, + ACTIONS(907), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(899), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(903), 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_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, - [5031] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1116), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(905), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1118), 42, - 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_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, - [5099] = 3, + [25754] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1120), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2011), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1122), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [25845] = 5, + ACTIONS(937), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(929), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(933), 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_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, - [5167] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1124), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(935), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1126), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [25896] = 5, + ACTIONS(917), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(909), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(913), 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_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, - [5235] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1128), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(915), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1130), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + [25947] = 15, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [5303] = 3, + ACTIONS(1945), 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(1935), 15, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [26018] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1132), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2013), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_BQUOTE, + [26109] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1134), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [5371] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1871), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [26200] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1136), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1891), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [26291] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1138), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [5439] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1915), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [26382] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1140), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1142), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [5507] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1756), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [26473] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1144), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 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(1935), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [26534] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1965), 1, + anon_sym_PIPE, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 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_QMARK_QMARK, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1146), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [26617] = 5, + ACTIONS(897), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(889), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(893), 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_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, - [5575] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1148), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(895), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1150), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [26668] = 5, + ACTIONS(967), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(959), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(963), 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_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, - [5643] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1152), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(965), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1154), 42, - 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_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, - [5711] = 3, + [26719] = 4, + ACTIONS(2015), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1859), 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(1861), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1158), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, + [26768] = 5, + ACTIONS(927), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(919), 2, 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(923), 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_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, - [5779] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(925), 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, + [26819] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1158), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1975), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, 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, - [5847] = 3, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1979), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2013), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_BQUOTE, + [26910] = 5, + ACTIONS(1797), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1160), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(2017), 4, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1790), 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(1792), 21, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1162), 42, - 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_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, - [5915] = 3, + [26961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1164), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1843), 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(1845), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1166), 42, - 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_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, - [5983] = 13, - ACTIONS(885), 1, + [27008] = 5, + ACTIONS(1833), 1, anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1168), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 13, - sym__ternary_qmark, + ACTIONS(2019), 4, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1826), 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(1828), 21, + sym__ternary_qmark, 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, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [27059] = 5, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2021), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(881), 12, 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(883), 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, - [6071] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [27110] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1170), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1818), 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(1820), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1172), 42, - 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_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, - [6139] = 3, + [27157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1174), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1750), 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(1752), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1176), 42, - 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_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, - [6207] = 3, + [27204] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1178), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1839), 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(1841), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1180), 42, - 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_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, - [6275] = 3, + [27251] = 22, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1965), 1, + anon_sym_PIPE, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1182), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1184), 42, - 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, 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, - [6343] = 3, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [27336] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1186), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(933), 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(935), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1188), 42, - 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_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, - [6411] = 3, + [27383] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1190), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1847), 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(1849), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1192), 42, - 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_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, - [6479] = 3, + [27430] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1851), 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(1853), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1014), 42, - 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_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, - [6547] = 3, + [27477] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1194), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1855), 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(1857), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1196), 42, - 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_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, - [6615] = 3, + [27524] = 4, + ACTIONS(2015), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1198), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1859), 13, + 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, + anon_sym_instanceof, + ACTIONS(1861), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1200), 42, - 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_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, - [6683] = 3, + [27573] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1202), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1865), 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(1867), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1204), 42, - 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_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, - [6751] = 3, + [27620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(963), 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(965), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1208), 42, - 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_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, - [6819] = 3, + [27667] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1210), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1869), 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(1871), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1212), 42, - 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_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, - [6887] = 3, + [27714] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1873), 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(1875), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1216), 42, - 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_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, - [6955] = 3, + [27761] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1218), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1877), 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(1879), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1220), 42, - 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_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, - [7023] = 3, + [27808] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1222), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, + ACTIONS(1881), 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(1883), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + 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, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1224), 42, - 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_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, - [7091] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + [27855] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 13, + ACTIONS(1814), 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(1816), 26, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + 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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, + [27902] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1822), 12, 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(1824), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + 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, - [7174] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [27949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1885), 12, 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(1228), 36, + ACTIONS(1887), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7240] = 3, + [27996] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1889), 12, 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(1232), 36, + ACTIONS(1891), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7306] = 3, + [28043] = 13, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 8, anon_sym_in, - anon_sym_EQ, 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(1935), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [28110] = 19, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, anon_sym_GT_GT, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(1945), 2, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 10, + 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, + anon_sym_BQUOTE, + [28189] = 5, + ACTIONS(957), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(949), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(953), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1236), 36, + ACTIONS(955), 23, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7372] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, + [28240] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, + anon_sym_GT_GT, + ACTIONS(1943), 1, + anon_sym_AMP, + ACTIONS(1949), 1, + anon_sym_PERCENT, + ACTIONS(1951), 1, + anon_sym_STAR_STAR, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1971), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1933), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1937), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1977), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [28331] = 5, + ACTIONS(2023), 1, + anon_sym_LPAREN, + ACTIONS(2026), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1222), 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(1224), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [28381] = 27, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2030), 1, + anon_sym_COMMA, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + STATE(1930), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2032), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28475] = 6, + ACTIONS(1797), 1, + anon_sym_EQ, + ACTIONS(2017), 1, + anon_sym_of, + ACTIONS(2066), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1790), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1240), 21, + ACTIONS(1792), 23, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, 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, - [7442] = 3, + [28527] = 6, + ACTIONS(1833), 1, + anon_sym_EQ, + ACTIONS(2019), 1, + anon_sym_of, + ACTIONS(2069), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1826), 11, 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(1248), 36, + ACTIONS(1828), 23, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7508] = 11, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, + [28579] = 6, + ACTIONS(885), 1, anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2021), 1, + anon_sym_of, + ACTIONS(2072), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, - sym__automatic_semicolon, + ACTIONS(881), 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(883), 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, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [28631] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - [7590] = 3, + ACTIONS(2107), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1915), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + [28721] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - ACTIONS(992), 36, + ACTIONS(2107), 1, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7656] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + ACTIONS(1756), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_BQUOTE, + [28811] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, 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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - [7738] = 3, + ACTIONS(2107), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1871), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + [28901] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - ACTIONS(1259), 36, + ACTIONS(2107), 1, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [7804] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2013), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + [28991] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - ACTIONS(1263), 36, + ACTIONS(2107), 1, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7870] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + ACTIONS(1891), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_BQUOTE, + [29081] = 26, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1981), 1, + anon_sym_AMP_AMP, + ACTIONS(1983), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1985), 1, + anon_sym_GT_GT, + ACTIONS(1989), 1, + anon_sym_AMP, + ACTIONS(1991), 1, + anon_sym_CARET, + ACTIONS(1993), 1, + anon_sym_PIPE, + ACTIONS(1997), 1, + anon_sym_PERCENT, + ACTIONS(1999), 1, + anon_sym_STAR_STAR, + ACTIONS(2007), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2009), 1, + sym__ternary_qmark, + ACTIONS(2111), 1, + anon_sym_in, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1975), 2, anon_sym_STAR, - anon_sym_in, + anon_sym_SLASH, + ACTIONS(1979), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1987), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1995), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2003), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2005), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2001), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2109), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [29173] = 27, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2030), 1, + anon_sym_COMMA, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2044), 1, anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - [7952] = 6, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(891), 1, - anon_sym_EQ, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + STATE(1930), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2114), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + [29267] = 5, + ACTIONS(2116), 1, + anon_sym_LPAREN, + ACTIONS(2119), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1843), 12, 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, - [8023] = 6, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 19, + ACTIONS(1845), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, 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(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [29317] = 27, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1943), 1, anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1949), 1, anon_sym_PERCENT, + ACTIONS(1951), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - [8094] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, + ACTIONS(1971), 1, sym__ternary_qmark, + ACTIONS(2121), 1, anon_sym_COMMA, + ACTIONS(2124), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1933), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1937), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29411] = 27, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1939), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1943), 1, anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1949), 1, anon_sym_PERCENT, + ACTIONS(1951), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1959), 1, + anon_sym_CARET, + ACTIONS(1961), 1, + anon_sym_AMP_AMP, + ACTIONS(1963), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1965), 1, + anon_sym_PIPE, + ACTIONS(1969), 1, anon_sym_QMARK_QMARK, - [8165] = 6, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, + ACTIONS(1971), 1, sym__ternary_qmark, + ACTIONS(2126), 1, anon_sym_COMMA, + ACTIONS(2129), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1933), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1941), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1955), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1957), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1937), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1953), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29505] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - [8236] = 12, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1269), 1, - sym_identifier, - ACTIONS(1271), 1, - anon_sym_LBRACK, + ACTIONS(2107), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1313), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 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, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1977), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + [29595] = 27, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2030), 1, + anon_sym_COMMA, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2044), 1, anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [8319] = 5, - ACTIONS(1267), 1, - anon_sym_EQ, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, + STATE(1930), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(2028), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2058), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29689] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - [8387] = 3, + ACTIONS(2107), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - 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, - [8450] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1234), 21, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2011), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + [29779] = 15, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2083), 1, anon_sym_GT_GT, + ACTIONS(2095), 1, + anon_sym_PERCENT, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1945), 7, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1236), 33, + ACTIONS(1935), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8513] = 3, + [29849] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, 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(1263), 33, + ACTIONS(1935), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8576] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [29909] = 21, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, 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(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8645] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1280), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1278), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, 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, - [8708] = 6, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [29991] = 22, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, 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(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2079), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8777] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, 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_SLASH, + ACTIONS(2085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2101), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1228), 33, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30075] = 13, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, 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, - [8840] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(921), 1, - anon_sym_EQ_GT, + ACTIONS(2095), 1, + anon_sym_PERCENT, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 17, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1935), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [30141] = 19, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2083), 1, + anon_sym_GT_GT, + ACTIONS(2095), 1, + anon_sym_PERCENT, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 9, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30219] = 20, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1945), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2083), 1, + anon_sym_GT_GT, + ACTIONS(2087), 1, + anon_sym_AMP, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8909] = 7, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 16, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30299] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2083), 1, + anon_sym_GT_GT, + ACTIONS(2087), 1, + anon_sym_AMP, + ACTIONS(2089), 1, + anon_sym_CARET, + ACTIONS(2095), 1, + anon_sym_PERCENT, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(2075), 2, 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_SLASH, + ACTIONS(2085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2101), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8980] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 16, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30381] = 12, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(2095), 1, + anon_sym_PERCENT, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, 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, - [9051] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1284), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1935), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [30445] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1945), 12, 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, - [9120] = 7, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(901), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, + ACTIONS(1935), 17, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [30505] = 17, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2083), 1, + anon_sym_GT_GT, + ACTIONS(2095), 1, + anon_sym_PERCENT, + ACTIONS(2097), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2077), 3, 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, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, anon_sym_AMP, - 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, - [9191] = 7, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 16, + ACTIONS(1935), 11, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - ACTIONS(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + [30579] = 23, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9262] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2075), 2, 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_SLASH, + ACTIONS(2085), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2101), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1259), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(2103), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [9325] = 6, - ACTIONS(1284), 1, - anon_sym_EQ_GT, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, + ACTIONS(1935), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [30665] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, 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(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - [9394] = 3, + ACTIONS(2107), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(2075), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, 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, - [9457] = 6, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 17, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1967), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + [30755] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, 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(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2079), 1, anon_sym_AMP_AMP, + ACTIONS(2081), 1, anon_sym_PIPE_PIPE, + ACTIONS(2083), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2087), 1, anon_sym_AMP, + ACTIONS(2089), 1, anon_sym_CARET, + ACTIONS(2091), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2095), 1, anon_sym_PERCENT, + ACTIONS(2097), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2105), 1, anon_sym_QMARK_QMARK, - [9526] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, + ACTIONS(2107), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(2075), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2085), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2093), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2103), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2077), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2099), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1973), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + [30845] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2137), 1, + anon_sym_RPAREN, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, + ACTIONS(2145), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2149), 1, anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - [9593] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1290), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1288), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(2133), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, 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, - [9656] = 3, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30938] = 17, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, 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, - [9719] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 10, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31011] = 23, + ACTIONS(1921), 1, anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, + anon_sym_AMP_AMP, + ACTIONS(2189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 1, + anon_sym_CARET, + ACTIONS(2195), 1, + anon_sym_PIPE, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2171), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2197), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31096] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, anon_sym_AMP, + ACTIONS(2193), 1, anon_sym_CARET, + ACTIONS(2195), 1, 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(2201), 1, anon_sym_QMARK_QMARK, - [9790] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1300), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1298), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, 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, - [9853] = 7, - ACTIONS(929), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(927), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(2197), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2199), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1967), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, - anon_sym_STAR, + ACTIONS(2173), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31185] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2209), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2213), 1, anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9924] = 7, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(942), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2205), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31266] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2209), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2213), 1, anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(2233), 1, + anon_sym_RBRACK, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - [9995] = 7, - ACTIONS(1304), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + STATE(2010), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2205), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31359] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, anon_sym_AMP, + ACTIONS(2193), 1, anon_sym_CARET, + ACTIONS(2195), 1, 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(2201), 1, anon_sym_QMARK_QMARK, - [10066] = 7, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 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, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2171), 2, 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_SLASH, + ACTIONS(2177), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10137] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 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, + ACTIONS(2199), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1973), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(775), 20, - anon_sym_STAR, + ACTIONS(2173), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31448] = 22, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2209), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2213), 1, anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10206] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(2205), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31531] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - [10275] = 3, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(2243), 2, + anon_sym_STAR, 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, - [10338] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1313), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - 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(1311), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, 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, - [10401] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(992), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1977), 3, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(994), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - 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, - [10464] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1246), 21, - anon_sym_STAR, + ACTIONS(2245), 3, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [31620] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - ACTIONS(1248), 33, - sym__automatic_semicolon, + ACTIONS(2275), 1, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2271), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10527] = 3, + [31709] = 15, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 7, 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(992), 33, - sym__automatic_semicolon, + ACTIONS(1935), 13, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10590] = 3, + [31778] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, 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(1232), 33, - sym__automatic_semicolon, + ACTIONS(1935), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10653] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [31837] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, 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(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10724] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2243), 2, 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_SLASH, + ACTIONS(2253), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10794] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [31918] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, 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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2247), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10866] = 5, - ACTIONS(1282), 1, - anon_sym_EQ, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(2243), 2, 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_SLASH, + ACTIONS(2253), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10932] = 7, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(764), 13, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32001] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 8, 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, - [11002] = 6, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [32066] = 19, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2243), 2, 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_SLASH, + ACTIONS(2253), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11070] = 8, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 15, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32143] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2255), 1, + anon_sym_AMP, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 19, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32222] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11142] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2243), 2, 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_SLASH, + ACTIONS(2253), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11210] = 6, - ACTIONS(1304), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32303] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, 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, - [11278] = 5, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [32366] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1945), 12, 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, - [11344] = 8, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 13, + ACTIONS(1935), 16, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [32425] = 17, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2245), 3, 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, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, anon_sym_AMP, - 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, - [11415] = 7, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + ACTIONS(1935), 10, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32498] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, 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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11484] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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_instanceof, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [32583] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - [11551] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, - 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_instanceof, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1967), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32672] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2255), 1, anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - [11618] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2243), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2269), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1973), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32761] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2281), 1, anon_sym_AMP_AMP, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, + ACTIONS(2285), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2289), 1, anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - [11689] = 6, - ACTIONS(1267), 1, - anon_sym_EQ, + ACTIONS(2309), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1977), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(2279), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [32850] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2281), 1, anon_sym_AMP_AMP, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, + ACTIONS(2285), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2289), 1, anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - [11756] = 8, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, + ACTIONS(2309), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(2277), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11826] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1325), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, + ACTIONS(2305), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(2279), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, + [32939] = 15, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 7, 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, - [11892] = 6, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 14, + ACTIONS(1935), 13, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [33008] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(1945), 12, 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, - [11958] = 8, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 13, + ACTIONS(1935), 16, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [33067] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2285), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2289), 1, anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12028] = 7, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2279), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [33148] = 22, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2281), 1, + anon_sym_AMP_AMP, + ACTIONS(2285), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2289), 1, anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12096] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(764), 14, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2279), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [33231] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 8, 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, - [12162] = 6, - ACTIONS(1325), 1, - anon_sym_EQ_GT, - ACTIONS(1327), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [33296] = 19, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2277), 2, 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_SLASH, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12228] = 7, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2279), 3, anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [33373] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, 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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, + anon_sym_AMP, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2279), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [33452] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2285), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2289), 1, anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12295] = 5, - ACTIONS(1327), 1, - anon_sym_EQ, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 14, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - 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, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + ACTIONS(2277), 2, 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_SLASH, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2279), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [12358] = 10, - ACTIONS(391), 1, anon_sym_BQUOTE, - ACTIONS(1333), 1, + [33533] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1339), 1, + ACTIONS(1732), 1, sym_optional_chain, - STATE(530), 1, - sym_template_string, - STATE(541), 1, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -48467,47 +95267,44 @@ 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(1331), 24, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12424] = 7, - ACTIONS(391), 1, anon_sym_BQUOTE, - ACTIONS(1333), 1, + [33596] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - STATE(530), 1, - sym_template_string, - STATE(541), 1, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48520,350 +95317,654 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 27, + ACTIONS(1935), 16, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_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, - [12484] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1341), 1, - sym__automatic_semicolon, + anon_sym_BQUOTE, + [33655] = 17, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2279), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 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(503), 29, + ACTIONS(1935), 10, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [33728] = 23, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2281), 1, anon_sym_AMP_AMP, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, + anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, + anon_sym_PIPE, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 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, - [12540] = 4, - ACTIONS(1343), 1, - sym__automatic_semicolon, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2277), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2279), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [33813] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2281), 1, + anon_sym_AMP_AMP, + ACTIONS(2283), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2285), 1, anon_sym_GT_GT, + ACTIONS(2289), 1, anon_sym_AMP, + ACTIONS(2291), 1, + anon_sym_CARET, + ACTIONS(2293), 1, anon_sym_PIPE, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + ACTIONS(2307), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2309), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1967), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2279), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33902] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2281), 1, anon_sym_AMP_AMP, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, + anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, + anon_sym_PIPE, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2309), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1973), 3, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BQUOTE, - [12593] = 8, - ACTIONS(1333), 1, + ACTIONS(2279), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33991] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - STATE(528), 1, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1347), 25, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12654] = 4, - ACTIONS(1341), 1, - sym__automatic_semicolon, + [34056] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2247), 1, + anon_sym_AMP_AMP, + ACTIONS(2249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2255), 1, + anon_sym_AMP, + ACTIONS(2257), 1, + anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, + anon_sym_PERCENT, + ACTIONS(2265), 1, + anon_sym_STAR_STAR, + ACTIONS(2273), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2275), 1, + sym__ternary_qmark, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(2313), 1, + anon_sym_COLON, + STATE(955), 1, + sym_arguments, + STATE(1999), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 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(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34149] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(2319), 1, + anon_sym_RBRACE, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + STATE(1967), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 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, - [12707] = 8, - ACTIONS(391), 1, - anon_sym_BQUOTE, - ACTIONS(1335), 1, + [34242] = 19, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1339), 1, + ACTIONS(1732), 1, sym_optional_chain, - STATE(530), 1, - sym_template_string, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2205), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [34319] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, + anon_sym_AMP_AMP, + ACTIONS(2143), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, + anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2353), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12768] = 9, - ACTIONS(1333), 1, + [34412] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - STATE(528), 1, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, + anon_sym_AMP_AMP, + ACTIONS(2143), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, + anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + ACTIONS(2167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2355), 1, + anon_sym_RPAREN, + STATE(955), 1, sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 23, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [12831] = 4, - ACTIONS(1242), 1, + [34505] = 6, + ACTIONS(1794), 1, + anon_sym_RBRACK, + ACTIONS(1797), 1, anon_sym_EQ, + ACTIONS(2017), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1790), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48876,18 +95977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, + ACTIONS(1792), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48906,445 +95999,516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12884] = 5, - ACTIONS(391), 1, - anon_sym_BQUOTE, - STATE(530), 1, - sym_template_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1351), 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(1353), 28, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [34556] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [12939] = 9, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - STATE(528), 1, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 23, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34645] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2361), 1, + anon_sym_SEMI, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [13002] = 4, - ACTIONS(1369), 1, - sym_regex_flags, + ACTIONS(2393), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2389), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1367), 27, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [34738] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(1945), 1, + anon_sym_PIPE, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13054] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 29, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [34817] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13104] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34906] = 15, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2040), 1, + anon_sym_GT_GT, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [13154] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(557), 29, + ACTIONS(1935), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [13204] = 3, + [34975] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 29, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35056] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13254] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, + STATE(1983), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35149] = 27, + ACTIONS(1044), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13304] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2399), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2046), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 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, - [13354] = 3, + [35242] = 6, + ACTIONS(1830), 1, + anon_sym_RBRACK, + ACTIONS(1833), 1, + anon_sym_EQ, + ACTIONS(2019), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1826), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49357,18 +96521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 29, + ACTIONS(1828), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -49387,11 +96543,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13404] = 3, + [35293] = 6, + ACTIONS(885), 1, + anon_sym_EQ, + ACTIONS(1803), 1, + anon_sym_RBRACK, + ACTIONS(2021), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(881), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49404,18 +96566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 29, + ACTIONS(883), 21, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -49434,58 +96588,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13454] = 3, + [35344] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2323), 1, + anon_sym_AMP_AMP, + ACTIONS(2325), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, + anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + ACTIONS(2349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1977), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35433] = 10, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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, + ACTIONS(2054), 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, - [13504] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49498,184 +96684,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 29, + ACTIONS(1935), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [13554] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1375), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1371), 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(1373), 24, - sym__ternary_qmark, - anon_sym_LBRACE, + [35492] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13608] = 3, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2011), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35581] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2327), 1, + anon_sym_GT_GT, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 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, - [13658] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1386), 29, + ACTIONS(1935), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [13708] = 3, + [35650] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49688,237 +96851,398 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 29, + ACTIONS(1935), 16, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [13758] = 3, + [35709] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, + anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 29, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35790] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [13808] = 3, + [35873] = 13, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1390), 29, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [13858] = 3, + [35938] = 19, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 29, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [36015] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(1945), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 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, - [13908] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 29, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [36094] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [13958] = 5, - ACTIONS(1411), 1, - anon_sym_EQ, + [36175] = 12, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1408), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1404), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -49927,39 +97251,44 @@ 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(1406), 24, + ACTIONS(1935), 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, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14012] = 3, + [36238] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49972,1689 +97301,2148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 29, + ACTIONS(1935), 16, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [14062] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1417), 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(1419), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [36297] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14112] = 3, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1973), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36386] = 17, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2327), 1, + anon_sym_GT_GT, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 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, - [14162] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 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(1427), 29, + ACTIONS(1935), 10, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [36459] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14212] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2401), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(525), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36552] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14262] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2013), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36641] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14312] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2403), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, + STATE(2039), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36734] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 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, - [14362] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 29, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [36819] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14412] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1441), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(507), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 24, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1967), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36908] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14466] = 3, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(2405), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + [36997] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14516] = 3, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1973), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37086] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14566] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1452), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1454), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1871), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37175] = 27, + ACTIONS(1044), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14616] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2407), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2066), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37268] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14666] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + ACTIONS(2409), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, + STATE(2010), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1462), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37361] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14716] = 3, + ACTIONS(2351), 1, + sym__ternary_qmark, + ACTIONS(2411), 1, + anon_sym_RBRACE, + STATE(955), 1, + sym_arguments, + STATE(1967), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37454] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14766] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1468), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1891), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37543] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14816] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1915), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37632] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14866] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1756), 3, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37721] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14916] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + ACTIONS(2413), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, + STATE(2010), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37814] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14966] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2415), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37907] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15016] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1915), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37996] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15066] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2417), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38089] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15116] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2419), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38182] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15166] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(529), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(527), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2013), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38271] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15216] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2421), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38364] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15266] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + ACTIONS(2423), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, + STATE(2010), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38457] = 21, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [15316] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 29, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [38538] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15366] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2425), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38631] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15416] = 3, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1871), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38720] = 22, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [15466] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 29, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [38803] = 27, + ACTIONS(1044), 1, + anon_sym_COMMA, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15516] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2427), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(1996), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38896] = 13, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [15566] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1518), 29, + ACTIONS(1935), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [15616] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1520), 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(1522), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [38961] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15666] = 3, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1977), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39050] = 20, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(1945), 1, + anon_sym_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [15716] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 29, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [39129] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [15766] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 29, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [39210] = 12, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [15816] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -51663,44 +99451,44 @@ 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(499), 29, + ACTIONS(1935), 15, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [15866] = 3, + [39273] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51713,781 +99501,796 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1538), 29, + ACTIONS(1935), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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, - [15916] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(521), 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(519), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [39332] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15966] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2429), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39425] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, + anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + ACTIONS(2167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2155), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1977), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BQUOTE, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 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, - [16016] = 19, - ACTIONS(1333), 1, + [39514] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, + anon_sym_AMP_AMP, + ACTIONS(2143), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2145), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, + anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2431), 1, + anon_sym_RPAREN, + STATE(955), 1, sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1556), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 12, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [16097] = 25, - ACTIONS(1333), 1, + [39607] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2281), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2291), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2293), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2309), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2277), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2305), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1871), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(2279), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2301), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16190] = 25, - ACTIONS(1333), 1, + [39696] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2281), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2291), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2293), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2309), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2277), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2305), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1584), 7, + ACTIONS(1891), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [16283] = 4, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1238), 12, - anon_sym_STAR, + ACTIONS(2279), 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(1240), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39785] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2281), 1, anon_sym_AMP_AMP, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, + anon_sym_AMP, + ACTIONS(2291), 1, anon_sym_CARET, + ACTIONS(2293), 1, + anon_sym_PIPE, + ACTIONS(2297), 1, anon_sym_PERCENT, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2309), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(2277), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2287), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2295), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2303), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2305), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1915), 3, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_BQUOTE, - [16334] = 25, - ACTIONS(1333), 1, + ACTIONS(2279), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2301), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39874] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2281), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2285), 1, + anon_sym_GT_GT, + ACTIONS(2289), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2291), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2293), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2297), 1, + anon_sym_PERCENT, + ACTIONS(2299), 1, + anon_sym_STAR_STAR, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2309), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2277), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2305), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1756), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(2279), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2301), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16427] = 10, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1586), 1, + [39963] = 17, + ACTIONS(1921), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(1592), 1, + ACTIONS(1929), 1, sym_optional_chain, - STATE(674), 1, - sym_template_string, - STATE(681), 1, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 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(1331), 21, + ACTIONS(1935), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [16490] = 25, - ACTIONS(1333), 1, + [40036] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2151), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2153), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2169), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2433), 1, + anon_sym_RPAREN, + STATE(955), 1, sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16583] = 25, - ACTIONS(1333), 1, + [40129] = 23, + ACTIONS(1921), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1929), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2028), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 7, + ACTIONS(1935), 5, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16676] = 25, - ACTIONS(1333), 1, + anon_sym_QMARK_QMARK, + [40214] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1945), 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, - ACTIONS(1564), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1935), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1402), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [16769] = 25, - ACTIONS(1333), 1, + [40277] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2435), 1, + anon_sym_RBRACE, + STATE(955), 1, sym_arguments, + STATE(1967), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16862] = 7, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1586), 1, + [40370] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - STATE(674), 1, - sym_template_string, - STATE(681), 1, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52500,1382 +100303,1295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, - sym__automatic_semicolon, + ACTIONS(1935), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [16919] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [40429] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 10, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(1572), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [40502] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2036), 1, + anon_sym_AMP_AMP, + ACTIONS(2038), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2052), 1, + anon_sym_PERCENT, + ACTIONS(2054), 1, + anon_sym_STAR_STAR, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(1060), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2028), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1967), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1446), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17012] = 15, - ACTIONS(1333), 1, + [40591] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 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(1546), 17, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [17085] = 25, - ACTIONS(1333), 1, + [40676] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1891), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17178] = 10, - ACTIONS(1333), 1, + [40765] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1560), 1, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, - sym__ternary_qmark, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1967), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + anon_sym_BQUOTE, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 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_BQUOTE, - [17241] = 25, - ACTIONS(1333), 1, + [40854] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2013), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1498), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17334] = 21, - ACTIONS(1333), 1, + [40943] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1574), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2215), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2217), 1, anon_sym_PIPE, - STATE(528), 1, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1891), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 11, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [17419] = 22, - ACTIONS(1333), 1, + [41032] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1574), 1, + ACTIONS(2367), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - STATE(528), 1, + ACTIONS(2381), 1, + anon_sym_PERCENT, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + ACTIONS(2391), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2437), 1, + anon_sym_SEMI, + STATE(955), 1, sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [17506] = 13, - ACTIONS(1333), 1, + [41125] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1558), 1, + ACTIONS(2323), 1, + anon_sym_AMP_AMP, + ACTIONS(2325), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, + anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1556), 2, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 19, - sym__ternary_qmark, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1915), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_BQUOTE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 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_BQUOTE, - [17575] = 20, - ACTIONS(1333), 1, + [41214] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2323), 1, + anon_sym_AMP_AMP, + ACTIONS(2325), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2327), 1, anon_sym_GT_GT, - ACTIONS(1554), 1, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, + anon_sym_CARET, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1558), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - STATE(528), 1, + ACTIONS(2349), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1756), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 12, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [17658] = 21, - ACTIONS(1333), 1, + [41303] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1554), 1, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, anon_sym_PIPE, - ACTIONS(1558), 1, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - STATE(528), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1915), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 11, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [17743] = 12, - ACTIONS(1333), 1, + [41392] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1558), 1, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 19, - sym__ternary_qmark, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1756), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_BQUOTE, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 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_BQUOTE, - [17810] = 25, - ACTIONS(1333), 1, + [41481] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2235), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2237), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2241), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1600), 7, + ACTIONS(1871), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_BQUOTE, - [17903] = 4, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1371), 12, - anon_sym_STAR, + ACTIONS(2207), 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(1373), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41570] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17954] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2011), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BQUOTE, - [18017] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1404), 12, - anon_sym_STAR, + ACTIONS(2139), 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(1406), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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(2161), 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, - [18068] = 17, - ACTIONS(1333), 1, + [41659] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 14, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(1977), 3, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_BQUOTE, - [18145] = 4, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(507), 12, - anon_sym_STAR, + ACTIONS(2207), 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(509), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - 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(2225), 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, - [18196] = 23, - ACTIONS(1333), 1, + [41748] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2215), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2217), 1, anon_sym_PIPE, - STATE(528), 1, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1973), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [18285] = 25, - ACTIONS(1333), 1, + [41837] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2151), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2153), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2169), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1502), 7, + ACTIONS(1871), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [18378] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(517), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(505), 12, - anon_sym_STAR, + ACTIONS(2139), 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(503), 25, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41926] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2145), 1, + anon_sym_GT_GT, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 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, - [18430] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(513), 1, - sym__automatic_semicolon, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(503), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(507), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(509), 23, + ACTIONS(1935), 13, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18484] = 4, - ACTIONS(1378), 1, - anon_sym_EQ, + [41995] = 15, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1373), 26, - sym__automatic_semicolon, + ACTIONS(1935), 13, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18534] = 25, - ACTIONS(1333), 1, + [42064] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2151), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2153), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2169), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1756), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_BQUOTE, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1602), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [18626] = 3, + [42153] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53888,562 +101604,654 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 27, - sym__automatic_semicolon, + ACTIONS(1935), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18674] = 9, - ACTIONS(1586), 1, + [42212] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - STATE(651), 1, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, + anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [18734] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1404), 12, - anon_sym_STAR, + ACTIONS(2139), 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(1406), 26, - sym__automatic_semicolon, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [42293] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2255), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18784] = 8, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - STATE(651), 1, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 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(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 22, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1871), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42382] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2255), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18842] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 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(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1891), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42471] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2255), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18892] = 4, - ACTIONS(511), 1, - anon_sym_EQ, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 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(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1915), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42560] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2247), 1, anon_sym_AMP_AMP, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2251), 1, + anon_sym_GT_GT, + ACTIONS(2255), 1, + anon_sym_AMP, + ACTIONS(2257), 1, anon_sym_CARET, + ACTIONS(2259), 1, + anon_sym_PIPE, + ACTIONS(2263), 1, anon_sym_PERCENT, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18942] = 8, - ACTIONS(81), 1, - anon_sym_BQUOTE, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1592), 1, - sym_optional_chain, - STATE(674), 1, - sym_template_string, + ACTIONS(2275), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2243), 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(2253), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 22, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2271), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1756), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2267), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42649] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 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, - [19000] = 5, - ACTIONS(81), 1, - anon_sym_BQUOTE, - STATE(674), 1, - sym_template_string, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, - sym__automatic_semicolon, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [42732] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 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, - [19052] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2155), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1538), 27, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19100] = 9, - ACTIONS(1586), 1, + [42797] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - STATE(651), 1, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1945), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2133), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 20, - sym__automatic_semicolon, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [19160] = 5, - ACTIONS(599), 1, - sym__automatic_semicolon, + [42874] = 20, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(595), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 23, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [42953] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 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, - [19211] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 26, - sym__automatic_semicolon, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [43034] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 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, - [19258] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -54452,41 +102260,44 @@ 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(1486), 26, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19305] = 3, + [43097] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54499,258 +102310,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(1935), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19352] = 3, + [43156] = 17, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2157), 1, + anon_sym_PERCENT, + ACTIONS(2159), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 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(1490), 26, - sym__automatic_semicolon, + ACTIONS(1935), 10, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19399] = 25, - ACTIONS(1586), 1, + [43229] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2247), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2251), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2255), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2259), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2263), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2275), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2243), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2253), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2271), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2013), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2245), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2267), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19490] = 25, - ACTIONS(1586), 1, + [43318] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2145), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2149), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2151), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2153), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2157), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19581] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1400), 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(1402), 26, - sym__automatic_semicolon, + ACTIONS(1935), 5, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [43403] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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, + ACTIONS(2223), 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, - [19628] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54763,658 +102541,615 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 26, - sym__automatic_semicolon, + ACTIONS(1935), 16, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19675] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1492), 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(1494), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [43462] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19722] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2439), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, + STATE(1983), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 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, - [19769] = 25, - ACTIONS(1586), 1, + [43555] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2281), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2283), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2285), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2289), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2291), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2293), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2297), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2299), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2307), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2309), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2277), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2287), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2295), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2305), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, + ACTIONS(2013), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_BQUOTE, - [19860] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1500), 12, - anon_sym_STAR, + ACTIONS(2279), 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(1502), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(2301), 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, - [19907] = 25, - ACTIONS(1586), 1, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43644] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2393), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(2441), 1, + anon_sym_SEMI, + STATE(955), 1, sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19998] = 5, - ACTIONS(1304), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 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(1240), 21, - sym__ternary_qmark, + [43737] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20049] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1967), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_BQUOTE, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43826] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20096] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2443), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43919] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20143] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1891), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_BQUOTE, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44008] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20190] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 26, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1977), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44097] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20237] = 3, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(2199), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20284] = 5, - ACTIONS(579), 1, + ACTIONS(2011), 3, sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(571), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(575), 12, - anon_sym_STAR, + anon_sym_SEMI, + anon_sym_BQUOTE, + ACTIONS(2173), 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(577), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44186] = 15, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, anon_sym_PERCENT, + ACTIONS(2183), 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, - [20335] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1518), 26, + ACTIONS(1935), 13, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [20382] = 3, + [44255] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55427,800 +103162,1058 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 26, + ACTIONS(1935), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [20429] = 3, + [44314] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 1, + anon_sym_CARET, + ACTIONS(2195), 1, + anon_sym_PIPE, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 26, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [44395] = 22, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, anon_sym_PERCENT, + ACTIONS(2183), 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, - [20476] = 5, - ACTIONS(559), 1, - sym__automatic_semicolon, + ACTIONS(2187), 1, + anon_sym_AMP_AMP, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 1, + anon_sym_CARET, + ACTIONS(2195), 1, + anon_sym_PIPE, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(555), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 23, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [44478] = 13, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2181), 1, anon_sym_PERCENT, + ACTIONS(2183), 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, - [20527] = 4, - ACTIONS(1282), 1, - anon_sym_EQ, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1240), 25, + ACTIONS(1935), 15, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20576] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1413), 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(1415), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [44543] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20623] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2445), 1, + anon_sym_SEMI, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, - sym__ternary_qmark, + ACTIONS(2389), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44636] = 19, + ACTIONS(1921), 1, anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, anon_sym_PERCENT, + ACTIONS(2183), 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, - [20674] = 5, - ACTIONS(569), 1, - sym__automatic_semicolon, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(565), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2171), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 23, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [44713] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20725] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2447), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44806] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20772] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2449), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44899] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20819] = 3, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2451), 1, + anon_sym_SEMI, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2389), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44992] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20866] = 5, - ACTIONS(589), 1, - sym__automatic_semicolon, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2453), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(581), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(585), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45085] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20917] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2455), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45178] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20964] = 5, - ACTIONS(609), 1, - sym__automatic_semicolon, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2457), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(605), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45271] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21015] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2459), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45364] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21062] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2461), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45457] = 20, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(1945), 1, + anon_sym_PIPE, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, anon_sym_PERCENT, + ACTIONS(2183), 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, - [21109] = 3, + ACTIONS(2191), 1, + anon_sym_AMP, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 26, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [21156] = 5, - ACTIONS(539), 1, - sym__automatic_semicolon, + [45536] = 21, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 1, + anon_sym_CARET, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(535), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 23, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [45617] = 27, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21207] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + ACTIONS(2463), 1, + anon_sym_RPAREN, + STATE(955), 1, + sym_arguments, + STATE(2019), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45710] = 12, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2181), 1, anon_sym_PERCENT, + ACTIONS(2183), 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, - [21254] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2171), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -56229,219 +104222,240 @@ 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(1419), 26, + ACTIONS(1935), 15, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [21301] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1480), 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(1482), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [45773] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21348] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2013), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_BQUOTE, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45862] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21395] = 5, - ACTIONS(549), 1, - sym__automatic_semicolon, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2465), 1, + anon_sym_SEMI, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(541), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(545), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(2389), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [45955] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21446] = 3, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2467), 1, + anon_sym_SEMI, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 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, - [21493] = 3, + [46048] = 10, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, + anon_sym_LBRACK, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56454,751 +104468,856 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 26, + ACTIONS(1935), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [21540] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1528), 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(1530), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [46107] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21587] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2469), 1, + anon_sym_SEMI, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 14, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 2, 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_SLASH, + ACTIONS(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2389), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1367), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [46200] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(2133), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1973), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_BQUOTE, - [21636] = 25, - ACTIONS(1586), 1, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46289] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1929), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2036), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2040), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2044), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2046), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2048), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2052), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2064), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(1060), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2028), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2042), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2060), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2034), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2056), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, + ACTIONS(2109), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [21727] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1644), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1371), 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(1373), 21, - sym__ternary_qmark, + [46378] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2036), 1, anon_sym_AMP_AMP, + ACTIONS(2038), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2040), 1, + anon_sym_GT_GT, + ACTIONS(2044), 1, + anon_sym_AMP, + ACTIONS(2046), 1, anon_sym_CARET, + ACTIONS(2048), 1, + anon_sym_PIPE, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2062), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21778] = 5, - ACTIONS(1411), 1, - anon_sym_EQ, + ACTIONS(2064), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1404), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2028), 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(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 21, - sym__ternary_qmark, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46467] = 27, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21829] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + ACTIONS(2393), 1, + sym__ternary_qmark, + ACTIONS(2471), 1, + anon_sym_SEMI, + STATE(955), 1, + sym_arguments, + STATE(2027), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(507), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 21, - sym__ternary_qmark, + ACTIONS(2389), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46560] = 19, + ACTIONS(1921), 1, anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 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(2040), 1, + anon_sym_GT_GT, + ACTIONS(2052), 1, anon_sym_PERCENT, + ACTIONS(2054), 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, - [21880] = 3, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2028), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2042), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2050), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2058), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 26, + ACTIONS(2060), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2034), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2056), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [46637] = 25, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1923), 1, anon_sym_LBRACK, + ACTIONS(1925), 1, anon_sym_DOT, + ACTIONS(1929), 1, sym_optional_chain, + ACTIONS(2175), 1, + anon_sym_GT_GT, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, anon_sym_AMP_AMP, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2191), 1, + anon_sym_AMP, + ACTIONS(2193), 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(2195), 1, + anon_sym_PIPE, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21927] = 5, - ACTIONS(1295), 1, - anon_sym_EQ, + ACTIONS(2203), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2109), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2171), 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(2177), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, - sym__ternary_qmark, + ACTIONS(2199), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2173), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2185), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46725] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21978] = 3, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2473), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 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, - [22025] = 25, - ACTIONS(1586), 1, + [46813] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2327), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2475), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22116] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1388), 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(1390), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [46901] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22163] = 3, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2477), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [46989] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2483), 1, anon_sym_AMP_AMP, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2493), 1, anon_sym_CARET, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, anon_sym_PERCENT, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22210] = 3, + ACTIONS(2511), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1977), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 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(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2507), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47077] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2483), 1, anon_sym_AMP_AMP, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2493), 1, anon_sym_CARET, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, anon_sym_PERCENT, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22257] = 3, + ACTIONS(2511), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2011), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 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(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2507), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [47165] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2487), 1, + anon_sym_GT_GT, + ACTIONS(2499), 1, anon_sym_PERCENT, + ACTIONS(2501), 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, - [22304] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1398), 26, - sym__automatic_semicolon, + ACTIONS(1935), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22351] = 3, + [47233] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57211,282 +105330,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 26, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22398] = 3, + [47291] = 21, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2493), 1, + anon_sym_CARET, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 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(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 26, - sym__automatic_semicolon, + ACTIONS(2507), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [47371] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2493), 1, anon_sym_CARET, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, anon_sym_PERCENT, + ACTIONS(2501), 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, - [22445] = 3, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 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(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 26, - sym__automatic_semicolon, + ACTIONS(2507), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [47453] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2499), 1, anon_sym_PERCENT, + ACTIONS(2501), 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, - [22492] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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, - anon_sym_instanceof, - ACTIONS(1367), 24, - sym__automatic_semicolon, + ACTIONS(1935), 14, 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_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_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_instanceof, anon_sym_BQUOTE, - [22541] = 3, + [47517] = 20, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 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(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 26, - sym__automatic_semicolon, + ACTIONS(2507), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 7, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22588] = 25, - ACTIONS(1586), 1, + [47595] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2487), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2499), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [22679] = 3, + [47675] = 12, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -57495,356 +105666,323 @@ 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(1446), 26, - sym__automatic_semicolon, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22726] = 25, - ACTIONS(1586), 1, + [47737] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1945), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 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(1634), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1935), 15, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1446), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_BQUOTE, - [22817] = 15, - ACTIONS(1586), 1, + [47795] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(2487), 1, anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(2499), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__automatic_semicolon, + ACTIONS(1935), 9, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [22888] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1448), 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(1450), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [47867] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2483), 1, anon_sym_AMP_AMP, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2493), 1, anon_sym_CARET, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, anon_sym_PERCENT, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2479), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2505), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [22935] = 25, - ACTIONS(1586), 1, + [47951] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2487), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2499), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2511), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1967), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23026] = 25, - ACTIONS(1586), 1, + [48039] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2487), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2499), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2511), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1973), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23117] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + [48127] = 4, + ACTIONS(1863), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1859), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57855,256 +105993,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, + anon_sym_instanceof, + ACTIONS(1861), 20, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + 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, - [23178] = 25, - ACTIONS(1586), 1, + [48173] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2393), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2405), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23269] = 25, - ACTIONS(1586), 1, + [48261] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1977), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23360] = 25, - ACTIONS(1586), 1, + [48349] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2011), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1446), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [23451] = 15, - ACTIONS(1586), 1, + [48437] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(1945), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58112,12 +106244,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__automatic_semicolon, + ACTIONS(1935), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -58128,26 +106257,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [23522] = 10, - ACTIONS(1586), 1, + [48505] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58160,12 +106289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -58179,221 +106305,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [23583] = 21, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 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_QMARK_QMARK, - anon_sym_BQUOTE, - [23666] = 21, - ACTIONS(1586), 1, + [48563] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, + ACTIONS(1935), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [23749] = 22, - ACTIONS(1586), 1, + [48643] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__automatic_semicolon, + ACTIONS(1935), 5, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [23834] = 13, - ACTIONS(1586), 1, + [48725] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1945), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58402,12 +106460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - sym__automatic_semicolon, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -58420,214 +106475,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [23901] = 19, - ACTIONS(1586), 1, + [48789] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + ACTIONS(1935), 7, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [23980] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [48865] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + ACTIONS(1935), 7, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24061] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [48943] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, + ACTIONS(1935), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24144] = 12, - ACTIONS(1586), 1, + [49023] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58638,12 +106684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - sym__automatic_semicolon, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -58656,26 +106699,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [24209] = 10, - ACTIONS(1586), 1, + [49085] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1672), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58688,12 +106731,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -58707,351 +106747,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [24270] = 17, - ACTIONS(1586), 1, + [49143] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 9, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [49215] = 23, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [49299] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1967), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49387] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1973), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49475] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, + anon_sym_STAR_STAR, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2205), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2227), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2229), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2405), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [49563] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2551), 1, + anon_sym_AMP_AMP, + ACTIONS(2553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2555), 1, + anon_sym_GT_GT, + ACTIONS(2559), 1, + anon_sym_AMP, + ACTIONS(2561), 1, + anon_sym_CARET, + ACTIONS(2563), 1, + anon_sym_PIPE, + ACTIONS(2567), 1, + anon_sym_PERCENT, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(2577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2579), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1977), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1652), 3, + ACTIONS(2573), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2575), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24345] = 23, - ACTIONS(1586), 1, + [49651] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2553), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(2577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2579), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2011), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24432] = 25, - ACTIONS(1586), 1, + [49739] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1945), 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(1678), 2, + ACTIONS(1935), 12, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [49807] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2569), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 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(1935), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [24523] = 25, - ACTIONS(1586), 1, + [49865] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1935), 6, + sym__ternary_qmark, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24614] = 22, - ACTIONS(1586), 1, + [49945] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1616), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__automatic_semicolon, + ACTIONS(1935), 5, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24699] = 13, - ACTIONS(1586), 1, + [50027] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1626), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1945), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -59060,12 +107434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - sym__automatic_semicolon, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -59078,1103 +107449,1097 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [24766] = 25, - ACTIONS(1586), 1, + [50091] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1935), 7, + sym__ternary_qmark, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24857] = 25, - ACTIONS(1586), 1, + [50167] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1935), 7, + sym__ternary_qmark, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [24948] = 25, - ACTIONS(1586), 1, + [50245] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(1935), 6, + sym__ternary_qmark, anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [25039] = 19, - ACTIONS(1586), 1, + [50325] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1945), 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, - ACTIONS(1634), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1935), 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [50387] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2569), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + 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(1935), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - [25118] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [50445] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1628), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 9, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [25199] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [50517] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(2551), 1, + anon_sym_AMP_AMP, + ACTIONS(2553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1628), 1, + ACTIONS(2563), 1, + anon_sym_PIPE, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, + ACTIONS(1935), 4, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_of, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [25282] = 25, - ACTIONS(1586), 1, + [50601] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2553), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2577), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2579), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1967), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25373] = 12, - ACTIONS(1586), 1, + [50689] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(2551), 1, + anon_sym_AMP_AMP, + ACTIONS(2553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2555), 1, + anon_sym_GT_GT, + ACTIONS(2559), 1, + anon_sym_AMP, + ACTIONS(2561), 1, + anon_sym_CARET, + ACTIONS(2563), 1, + anon_sym_PIPE, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(2577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2579), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1973), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2557), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 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_LT_EQ, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2549), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [25438] = 10, - ACTIONS(1586), 1, + [50777] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1630), 1, + ACTIONS(2209), 1, + anon_sym_GT_GT, + ACTIONS(2213), 1, + anon_sym_AMP, + ACTIONS(2215), 1, + anon_sym_CARET, + ACTIONS(2217), 1, + anon_sym_PIPE, + ACTIONS(2221), 1, + anon_sym_PERCENT, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2205), 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(2211), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2475), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2207), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2225), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [25499] = 17, - ACTIONS(1586), 1, + [50865] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(2141), 1, + anon_sym_AMP_AMP, + ACTIONS(2143), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2145), 1, anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, + anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(2167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1610), 3, + ACTIONS(2163), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2477), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25574] = 23, - ACTIONS(1586), 1, + [50953] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2209), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2213), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2215), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2217), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2221), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2223), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(2235), 1, + anon_sym_AMP_AMP, + ACTIONS(2237), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2239), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2241), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2205), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2211), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2219), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2229), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2581), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2207), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2225), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25661] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1452), 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(1454), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [51041] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2141), 1, anon_sym_AMP_AMP, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2145), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_AMP, + ACTIONS(2151), 1, anon_sym_CARET, + ACTIONS(2153), 1, + anon_sym_PIPE, + ACTIONS(2157), 1, anon_sym_PERCENT, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25708] = 3, + ACTIONS(2169), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2133), 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(2147), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2165), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2581), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(2139), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2161), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51129] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2323), 1, anon_sym_AMP_AMP, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, + anon_sym_AMP, + ACTIONS(2333), 1, anon_sym_CARET, + ACTIONS(2335), 1, + anon_sym_PIPE, + ACTIONS(2339), 1, anon_sym_PERCENT, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25755] = 4, - ACTIONS(1286), 1, - anon_sym_EQ, + ACTIONS(2351), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2315), 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(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 25, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2405), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51217] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25804] = 3, + ACTIONS(2393), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1977), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2357), 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(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1462), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - 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(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 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, - [25851] = 25, - ACTIONS(1586), 1, + [51305] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2145), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(2149), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(2151), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(2153), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2157), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(2169), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(2475), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25942] = 25, - ACTIONS(1586), 1, + [51393] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2393), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2011), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26033] = 3, + [51481] = 15, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2381), 1, + anon_sym_PERCENT, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1466), 26, - sym__automatic_semicolon, + ACTIONS(1935), 12, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [26080] = 25, - ACTIONS(1586), 1, + [51549] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26171] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1468), 12, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60187,598 +108552,518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 26, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - 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, - [26218] = 25, - ACTIONS(1586), 1, + [51607] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2327), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2581), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26309] = 25, - ACTIONS(1586), 1, + [51695] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 5, - sym__automatic_semicolon, + ACTIONS(1935), 6, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_BQUOTE, - [26400] = 27, - ACTIONS(1586), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [51775] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1684), 1, - anon_sym_COMMA, - ACTIONS(1687), 1, - anon_sym_RBRACE, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26494] = 5, - ACTIONS(1267), 1, - anon_sym_EQ, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [51857] = 13, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2381), 1, + anon_sym_PERCENT, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1315), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2379), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1240), 21, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26544] = 26, - ACTIONS(1586), 1, + [51921] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1656), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1664), 1, - anon_sym_CARET, - ACTIONS(1666), 1, - anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, - sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_in, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1674), 3, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1689), 4, - sym__automatic_semicolon, + ACTIONS(1935), 7, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_of, - [26636] = 25, - ACTIONS(1333), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [51997] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1694), 4, + ACTIONS(1935), 7, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26726] = 27, - ACTIONS(1586), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [52075] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2247), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2249), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2251), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2255), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2257), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2259), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2263), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2265), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2273), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2275), 1, sym__ternary_qmark, - ACTIONS(1696), 1, - anon_sym_COMMA, - ACTIONS(1699), 1, - anon_sym_RBRACE, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2243), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2253), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2261), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2269), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2271), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2405), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2245), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2267), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26820] = 25, - ACTIONS(1333), 1, + [52163] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2381), 1, + anon_sym_PERCENT, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1701), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26910] = 6, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(1644), 1, - anon_sym_of, - ACTIONS(1703), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1371), 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(1373), 23, + ACTIONS(1935), 6, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [52243] = 12, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 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, - [26962] = 6, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_of, - ACTIONS(1706), 1, - anon_sym_in, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 11, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60786,45 +109071,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(1406), 23, + ACTIONS(1935), 14, 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, - [27014] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1648), 1, - anon_sym_of, - ACTIONS(1709), 1, - anon_sym_in, + [52305] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 11, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60835,398 +109120,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 23, + ACTIONS(1935), 15, 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, - [27066] = 5, - ACTIONS(1712), 1, + [52363] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1715), 1, - anon_sym_COLON, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2381), 1, + anon_sym_PERCENT, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(2385), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 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(1240), 23, - sym__automatic_semicolon, + ACTIONS(1935), 9, sym__ternary_qmark, anon_sym_COMMA, 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, + [52435] = 23, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2365), 1, anon_sym_AMP_AMP, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, + anon_sym_AMP, + ACTIONS(2375), 1, anon_sym_CARET, + ACTIONS(2377), 1, + anon_sym_PIPE, + ACTIONS(2381), 1, anon_sym_PERCENT, + ACTIONS(2383), 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, - [27116] = 6, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 11, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2357), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 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, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2363), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2385), 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, - [27168] = 27, - ACTIONS(1586), 1, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [52519] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2393), 1, sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, + STATE(955), 1, sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1967), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1719), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27262] = 27, - ACTIONS(1586), 1, + [52607] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2369), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2381), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2383), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2393), 1, sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, + STATE(955), 1, sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1973), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27356] = 27, - ACTIONS(1586), 1, + [52695] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, + STATE(955), 1, sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1977), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1723), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27450] = 27, - ACTIONS(1586), 1, + [52783] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1687), 1, - anon_sym_RBRACE, - ACTIONS(1725), 1, - anon_sym_COMMA, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1594), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2011), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27544] = 5, - ACTIONS(1728), 1, + [52871] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1731), 1, - anon_sym_COLON, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2583), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2593), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2601), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1935), 12, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [52939] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -61239,632 +109589,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 23, - sym__automatic_semicolon, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27594] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [52997] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2595), 1, + anon_sym_AMP, + ACTIONS(2597), 1, + anon_sym_CARET, + ACTIONS(2599), 1, + anon_sym_PIPE, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2583), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2593), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2601), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2609), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2611), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2585), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2607), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_RBRACE, anon_sym_AMP_AMP, - ACTIONS(1572), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [53077] = 22, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2587), 1, + anon_sym_AMP_AMP, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1733), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27687] = 27, - ACTIONS(1333), 1, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [53159] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1737), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1871), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27780] = 27, - ACTIONS(1333), 1, + [53247] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1739), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1891), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27873] = 27, - ACTIONS(1333), 1, + [53335] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1741), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1915), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27966] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [53423] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1317), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1756), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28059] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [53511] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1306), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2601), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1935), 14, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [28152] = 27, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [53575] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1747), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28245] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [53651] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1600), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28334] = 25, - ACTIONS(1586), 1, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [53729] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28423] = 6, - ACTIONS(1375), 1, - anon_sym_RBRACK, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(1644), 1, - anon_sym_COMMA, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [53809] = 12, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2583), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -61873,153 +110234,106 @@ 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(1373), 21, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28474] = 27, - ACTIONS(1333), 1, + [53871] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2365), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2367), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2369), 1, + anon_sym_GT_GT, + ACTIONS(2373), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2375), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2377), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2381), 1, + anon_sym_PERCENT, + ACTIONS(2383), 1, + anon_sym_STAR_STAR, + ACTIONS(2391), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2393), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1783), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2013), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2357), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2371), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2379), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2387), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2389), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2363), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2385), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28567] = 6, - ACTIONS(1408), 1, - anon_sym_RBRACK, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1404), 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(1406), 21, - sym__ternary_qmark, + [53959] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 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, + ACTIONS(2605), 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, - [28618] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1441), 1, - anon_sym_RBRACK, - ACTIONS(1648), 1, - anon_sym_COMMA, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -62032,2470 +110346,2499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 21, + ACTIONS(1935), 15, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28669] = 27, - ACTIONS(1333), 1, + [54017] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1785), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1871), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28762] = 25, - ACTIONS(1333), 1, + [54105] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1891), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1502), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28851] = 27, - ACTIONS(1333), 1, + [54193] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1787), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1915), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28944] = 27, - ACTIONS(1333), 1, + [54281] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1789), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1756), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29037] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [54369] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1355), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29130] = 27, - ACTIONS(1333), 1, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 9, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [54441] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1793), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29223] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [54525] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1367), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2013), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29316] = 27, - ACTIONS(1333), 1, + [54613] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1797), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1967), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29409] = 27, - ACTIONS(1333), 1, + [54701] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2511), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1799), 1, - anon_sym_RBRACE, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1871), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29502] = 27, - ACTIONS(1333), 1, + [54789] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2511), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1801), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1891), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29595] = 27, - ACTIONS(1333), 1, + [54877] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2511), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1915), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29688] = 27, - ACTIONS(1333), 1, + [54965] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2483), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2485), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2493), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2495), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, + anon_sym_STAR_STAR, + ACTIONS(2509), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2511), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1805), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1756), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29781] = 27, - ACTIONS(1333), 1, + [55053] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1807), 1, - anon_sym_COLON, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1973), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29874] = 27, - ACTIONS(1333), 1, + [55141] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1809), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2013), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29967] = 27, - ACTIONS(1333), 1, + [55229] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1811), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1871), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30060] = 27, - ACTIONS(1333), 1, + [55317] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1813), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1891), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30153] = 25, - ACTIONS(1333), 1, + [55405] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1915), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1815), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30242] = 27, - ACTIONS(1333), 1, + [55493] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1817), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1756), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30335] = 25, - ACTIONS(1333), 1, + [55581] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2141), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2143), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2145), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2149), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2151), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2153), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2157), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2159), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2167), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2169), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2133), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2147), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2155), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2163), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2165), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1594), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2405), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2139), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2161), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30424] = 25, - ACTIONS(1333), 1, + [55669] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1977), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1402), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30513] = 27, - ACTIONS(1333), 1, + [55757] = 25, + ACTIONS(1921), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1929), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2175), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2181), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2183), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2187), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2189), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2191), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2193), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2195), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2201), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2203), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1819), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(1060), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2177), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2199), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2651), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(2173), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30606] = 27, - ACTIONS(1333), 1, + [55845] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2011), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30699] = 25, - ACTIONS(1333), 1, + [55933] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1945), 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(1777), 2, + ACTIONS(1935), 12, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1568), 3, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - ACTIONS(1751), 3, + [56001] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 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(1935), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [30788] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [56059] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2591), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2603), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2605), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2013), 2, + anon_sym_RBRACE, + anon_sym_BQUOTE, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1498), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30877] = 25, - ACTIONS(1333), 1, + [56147] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1446), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30966] = 27, - ACTIONS(1333), 1, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [56227] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2553), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2555), 1, + anon_sym_GT_GT, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2567), 1, + anon_sym_PERCENT, + ACTIONS(2569), 1, + anon_sym_STAR_STAR, + ACTIONS(2577), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2579), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1823), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1871), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31059] = 27, - ACTIONS(1333), 1, + [56315] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2553), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2555), 1, + anon_sym_GT_GT, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2567), 1, + anon_sym_PERCENT, + ACTIONS(2569), 1, + anon_sym_STAR_STAR, + ACTIONS(2577), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2579), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1891), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31152] = 15, - ACTIONS(1333), 1, + [56403] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(2551), 1, + anon_sym_AMP_AMP, + ACTIONS(2553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(2559), 1, + anon_sym_AMP, + ACTIONS(2561), 1, + anon_sym_CARET, + ACTIONS(2563), 1, + anon_sym_PIPE, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2579), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1915), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 13, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2549), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2571), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [31221] = 27, - ACTIONS(1333), 1, + [56491] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2553), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2555), 1, + anon_sym_GT_GT, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2567), 1, + anon_sym_PERCENT, + ACTIONS(2569), 1, + anon_sym_STAR_STAR, + ACTIONS(2577), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2579), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1827), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1756), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31314] = 10, - ACTIONS(1333), 1, + [56579] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1771), 1, + ACTIONS(2483), 1, + anon_sym_AMP_AMP, + ACTIONS(2485), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2487), 1, + anon_sym_GT_GT, + ACTIONS(2491), 1, + anon_sym_AMP, + ACTIONS(2493), 1, + anon_sym_CARET, + ACTIONS(2495), 1, + anon_sym_PIPE, + ACTIONS(2499), 1, + anon_sym_PERCENT, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2509), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2511), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_BQUOTE, + ACTIONS(2479), 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(2489), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 16, - 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(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2481), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2503), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [31373] = 21, - ACTIONS(1333), 1, + [56667] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(2551), 1, + anon_sym_AMP_AMP, + ACTIONS(2553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2577), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2579), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2013), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2549), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31454] = 22, - ACTIONS(1333), 1, + [56755] = 26, + ACTIONS(1921), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1925), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1929), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(2175), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2181), 1, + anon_sym_PERCENT, + ACTIONS(2183), 1, + anon_sym_STAR_STAR, + ACTIONS(2187), 1, + anon_sym_AMP_AMP, + ACTIONS(2189), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2191), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2193), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2195), 1, anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2201), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2203), 1, + sym__ternary_qmark, + ACTIONS(2653), 1, + anon_sym_SEMI, + ACTIONS(2655), 1, + sym__automatic_semicolon, + STATE(1060), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2171), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2177), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2199), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2173), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2185), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31537] = 13, - ACTIONS(1333), 1, + [56845] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1769), 1, + ACTIONS(2621), 1, + anon_sym_AMP_AMP, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, + anon_sym_AMP, + ACTIONS(2631), 1, + anon_sym_CARET, + ACTIONS(2633), 1, + anon_sym_PIPE, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1767), 2, + ACTIONS(2627), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(2643), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2645), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2619), 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(1546), 15, + ACTIONS(2641), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, 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, anon_sym_BQUOTE, - [31602] = 25, - ACTIONS(1333), 1, + [56927] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2327), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2339), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2341), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2124), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2315), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2329), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2337), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2345), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2347), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1596), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2321), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2343), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31691] = 27, - ACTIONS(1333), 1, + [57015] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2323), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2325), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2327), 1, + anon_sym_GT_GT, + ACTIONS(2331), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2333), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2335), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2339), 1, + anon_sym_PERCENT, + ACTIONS(2341), 1, + anon_sym_STAR_STAR, + ACTIONS(2349), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2351), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2129), 2, anon_sym_COMMA, - ACTIONS(1829), 1, anon_sym_RBRACE, - STATE(528), 1, + ACTIONS(2315), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2329), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2337), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2345), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2347), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2321), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2343), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [57103] = 13, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1945), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31784] = 19, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [57167] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 2, + ACTIONS(1945), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, + ACTIONS(1935), 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, anon_sym_BQUOTE, - [31861] = 20, - ACTIONS(1333), 1, + [57243] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1554), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, + ACTIONS(1935), 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, anon_sym_BQUOTE, - [31940] = 21, - ACTIONS(1333), 1, + [57321] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1554), 1, + ACTIONS(1945), 1, anon_sym_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, + ACTIONS(1935), 6, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [32021] = 12, - ACTIONS(1333), 1, + [57401] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, + ACTIONS(1945), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -64506,10 +112849,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, + ACTIONS(1935), 14, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -64522,26 +112864,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [32084] = 10, - ACTIONS(1333), 1, + [57463] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -64554,10 +112896,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 16, + ACTIONS(1935), 15, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -64571,121 +112912,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [32143] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1831), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32236] = 17, - ACTIONS(1333), 1, + [57521] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, + ACTIONS(1945), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 10, + ACTIONS(1935), 9, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -64693,965 +112967,942 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [32309] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32402] = 23, - ACTIONS(1333), 1, + [57593] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 5, + ACTIONS(1935), 4, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [32487] = 27, - ACTIONS(1333), 1, + [57677] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1967), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32580] = 25, - ACTIONS(1333), 1, + [57765] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2625), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2637), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2639), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1973), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1584), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32669] = 27, - ACTIONS(1333), 1, + [57853] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2487), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2499), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2501), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1837), 1, - anon_sym_RBRACE, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2479), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2489), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2497), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2505), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2507), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2481), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2503), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32762] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 7, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [57929] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2011), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2663), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2673), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2687), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2689), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1466), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32851] = 27, - ACTIONS(1333), 1, + [58016] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2621), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2623), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2625), 1, + anon_sym_GT_GT, + ACTIONS(2629), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2631), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2633), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2637), 1, + anon_sym_PERCENT, + ACTIONS(2639), 1, + anon_sym_STAR_STAR, + ACTIONS(2647), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2649), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1839), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2691), 1, + anon_sym_LBRACE, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2627), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2635), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2645), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2619), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2641), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32944] = 27, - ACTIONS(698), 1, + [58103] = 25, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, + anon_sym_STAR, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(169), 1, + anon_sym_static, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(2693), 1, + sym_identifier, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2697), 1, + anon_sym_RBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(528), 1, - sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, + ACTIONS(2701), 1, + anon_sym_async, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1778), 1, + aux_sym_non_reserved_keyword, + STATE(2025), 1, + aux_sym_object_pattern_repeat1, + STATE(2064), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [33037] = 27, - ACTIONS(1333), 1, + ACTIONS(173), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(2034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2047), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2061), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [58190] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2475), 1, + anon_sym_RBRACE, + ACTIONS(2587), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2589), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2591), 1, + anon_sym_GT_GT, + ACTIONS(2595), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2597), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2599), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2603), 1, + anon_sym_PERCENT, + ACTIONS(2605), 1, + anon_sym_STAR_STAR, + ACTIONS(2613), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2615), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2583), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2593), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2601), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2609), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2611), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2585), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2607), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33130] = 25, - ACTIONS(1333), 1, + [58277] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2705), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1490), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33219] = 25, - ACTIONS(1586), 1, + [58364] = 25, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, + anon_sym_STAR, + ACTIONS(121), 1, + anon_sym_COMMA, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(169), 1, + anon_sym_static, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, + anon_sym_LBRACK, + ACTIONS(2701), 1, + anon_sym_async, + ACTIONS(2707), 1, + sym_identifier, + ACTIONS(2709), 1, + anon_sym_RBRACE, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1768), 1, + aux_sym_non_reserved_keyword, + STATE(2014), 1, + aux_sym_object_repeat1, + STATE(2025), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(173), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(1969), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2047), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [58451] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1977), 1, + anon_sym_RBRACK, + ACTIONS(2715), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2717), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2741), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2743), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1689), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [33308] = 6, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1238), 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(1240), 21, - sym__ternary_qmark, + [58538] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2011), 1, + anon_sym_RBRACK, + ACTIONS(2715), 1, anon_sym_AMP_AMP, + ACTIONS(2717), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33359] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2731), 1, + anon_sym_PERCENT, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + ACTIONS(2741), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2743), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(955), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33452] = 25, - ACTIONS(1333), 1, + [58625] = 25, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, + anon_sym_STAR, + ACTIONS(121), 1, + anon_sym_COMMA, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(169), 1, + anon_sym_static, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, + anon_sym_LBRACK, + ACTIONS(2701), 1, + anon_sym_async, + ACTIONS(2745), 1, + sym_identifier, + ACTIONS(2747), 1, + anon_sym_RBRACE, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1781), 1, + aux_sym_non_reserved_keyword, + STATE(2025), 1, + aux_sym_object_pattern_repeat1, + STATE(2064), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(173), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(2034), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2047), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2061), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [58712] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2719), 1, + anon_sym_GT_GT, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1598), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(1945), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 11, + sym__ternary_qmark, + 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, - [33541] = 25, - ACTIONS(1333), 1, + [58779] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2749), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1584), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33629] = 4, - ACTIONS(1327), 1, - anon_sym_EQ, + [58866] = 10, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -65664,5346 +113915,5255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 22, + ACTIONS(1935), 14, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_of, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33675] = 25, - ACTIONS(1333), 1, + [58923] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2731), 1, + anon_sym_PERCENT, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1881), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33763] = 4, - ACTIONS(1369), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1365), 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(1367), 20, + ACTIONS(1935), 5, sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [59002] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, anon_sym_DOT, + ACTIONS(1732), 1, sym_optional_chain, + ACTIONS(2715), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2719), 1, + anon_sym_GT_GT, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, anon_sym_CARET, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2731), 1, anon_sym_PERCENT, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2721), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2729), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2737), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2713), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33809] = 24, - ACTIONS(91), 1, + [59083] = 25, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(99), 1, + ACTIONS(119), 1, anon_sym_STAR, - ACTIONS(101), 1, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(111), 1, + ACTIONS(163), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, + ACTIONS(169), 1, + anon_sym_static, + ACTIONS(171), 1, aux_sym_method_definition_token1, - ACTIONS(854), 1, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(2695), 1, anon_sym_LBRACE, - ACTIONS(1887), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(1891), 1, + ACTIONS(2701), 1, anon_sym_async, - ACTIONS(1895), 1, - anon_sym_static, - STATE(915), 1, + ACTIONS(2751), 1, + sym_identifier, + ACTIONS(2753), 1, + anon_sym_RBRACE, + STATE(1586), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1661), 1, sym_decorator, - STATE(1312), 1, + STATE(1785), 1, + aux_sym_non_reserved_keyword, + STATE(2025), 1, aux_sym_object_pattern_repeat1, - STATE(1334), 1, + STATE(2064), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1897), 2, + ACTIONS(173), 2, anon_sym_get, anon_sym_set, - ACTIONS(1883), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(2034), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [33895] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1901), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1309), 1, - aux_sym_object_repeat1, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1907), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1899), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, + STATE(2047), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1289), 3, + STATE(2061), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, + STATE(2436), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [33981] = 25, - ACTIONS(1586), 1, + [59170] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(2755), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1909), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34069] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_async, - ACTIONS(1917), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1919), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1911), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34155] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1923), 1, - anon_sym_RBRACE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1921), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34241] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + [59257] = 13, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_RBRACE, - ACTIONS(1935), 1, - anon_sym_async, - ACTIONS(1937), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2731), 1, + anon_sym_PERCENT, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1939), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1931), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34327] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2711), 2, anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1943), 1, - anon_sym_RBRACE, - ACTIONS(1945), 1, - anon_sym_async, - ACTIONS(1947), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1941), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34413] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1318), 1, + anon_sym_SLASH, + ACTIONS(2729), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 8, anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1238), 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(1240), 21, + ACTIONS(1935), 13, sym__ternary_qmark, - anon_sym_LPAREN, - 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, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [34463] = 26, - ACTIONS(1586), 1, + [59320] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1951), 1, - anon_sym_SEMI, - ACTIONS(1953), 1, - sym__automatic_semicolon, - STATE(651), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34553] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [59395] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2721), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2729), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2737), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2739), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2713), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(1572), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [59472] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2757), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1687), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34641] = 25, - ACTIONS(1333), 1, + [59559] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2759), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1699), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34729] = 25, - ACTIONS(1333), 1, + [59646] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2731), 1, + anon_sym_PERCENT, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2721), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2729), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2737), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2739), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2713), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [59725] = 12, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1594), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1945), 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, - ACTIONS(1873), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1935), 13, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34817] = 25, - ACTIONS(1333), 1, + [59786] = 26, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2109), 1, + anon_sym_of, + ACTIONS(2551), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2553), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2555), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2559), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2561), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2563), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2567), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2569), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2577), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2579), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2761), 1, + anon_sym_in, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1402), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2547), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2549), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2557), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2565), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2573), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2575), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2571), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34905] = 25, - ACTIONS(1333), 1, + [59875] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1568), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1945), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 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(1873), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1935), 14, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34993] = 25, - ACTIONS(1333), 1, + [59932] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2715), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2717), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2741), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2743), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2764), 1, + anon_sym_RBRACK, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1598), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35081] = 25, - ACTIONS(1333), 1, + [60019] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2766), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1446), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35169] = 15, - ACTIONS(1333), 1, + [60106] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 12, + ACTIONS(1935), 8, sym__ternary_qmark, - anon_sym_of, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [35237] = 10, - ACTIONS(1333), 1, + [60177] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1869), 1, + ACTIONS(2013), 1, + anon_sym_RBRACK, + ACTIONS(2715), 1, + anon_sym_AMP_AMP, + ACTIONS(2717), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2719), 1, + anon_sym_GT_GT, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2731), 1, + anon_sym_PERCENT, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2743), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2711), 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(2721), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2713), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [35295] = 21, - ACTIONS(1333), 1, + [60264] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2715), 1, + anon_sym_AMP_AMP, + ACTIONS(2717), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1935), 3, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35375] = 22, - ACTIONS(1333), 1, + [60347] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(1967), 1, + anon_sym_RBRACK, + ACTIONS(2715), 1, anon_sym_AMP_AMP, - ACTIONS(1855), 1, + ACTIONS(2717), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2719), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2723), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2725), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2743), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2721), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2713), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2735), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35457] = 13, - ACTIONS(1333), 1, + [60434] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1867), 1, + ACTIONS(1973), 1, + anon_sym_RBRACK, + ACTIONS(2715), 1, + anon_sym_AMP_AMP, + ACTIONS(2717), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2719), 1, + anon_sym_GT_GT, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2731), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2733), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2743), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2711), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1865), 2, + ACTIONS(2721), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2729), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2737), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 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_LT_EQ, + ACTIONS(2739), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2713), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [35521] = 19, - ACTIONS(1333), 1, + [60521] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2768), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35597] = 20, - ACTIONS(1333), 1, + [60608] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1867), 1, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2770), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35675] = 21, - ACTIONS(1333), 1, + [60695] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(1977), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1867), 1, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 6, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [35755] = 12, - ACTIONS(1333), 1, + [60782] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1867), 1, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2772), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 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_LT_EQ, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [35817] = 10, - ACTIONS(1333), 1, + [60869] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1869), 1, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2774), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(2513), 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(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [35875] = 17, - ACTIONS(1333), 1, + [60956] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 3, + ACTIONS(1945), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1554), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 9, + ACTIONS(1935), 11, sym__ternary_qmark, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_BQUOTE, - [35947] = 23, - ACTIONS(1333), 1, + [61023] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2776), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [36031] = 25, - ACTIONS(1333), 1, + [61110] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, - anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1466), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1945), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 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(1873), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1935), 14, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1871), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36119] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [61167] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2673), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1490), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36207] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [61246] = 22, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2661), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2673), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1498), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36295] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [61327] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, - anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1502), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1875), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(1945), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36383] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [61390] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2778), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1600), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36471] = 25, - ACTIONS(1333), 1, + [61477] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, - anon_sym_AMP, - ACTIONS(1861), 1, - anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1596), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36559] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [61552] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1955), 1, - anon_sym_COLON, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36646] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 6, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [61629] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1957), 1, - anon_sym_LBRACE, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36733] = 25, - ACTIONS(1333), 1, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [61708] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1959), 1, - anon_sym_COLON, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1945), 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, - ACTIONS(1775), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1935), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36820] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [61769] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - ACTIONS(1961), 1, + ACTIONS(2780), 1, anon_sym_COLON, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36907] = 25, - ACTIONS(1333), 1, + [61856] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1963), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1945), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 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(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1935), 14, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36994] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [61913] = 17, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1965), 1, - anon_sym_COLON, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37081] = 26, - ACTIONS(1333), 1, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 8, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [61984] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1689), 1, - anon_sym_of, - ACTIONS(1851), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - ACTIONS(1967), 1, - anon_sym_in, - STATE(528), 1, + ACTIONS(2782), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1857), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1871), 3, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37170] = 25, - ACTIONS(1333), 1, + [62071] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2661), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2663), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2665), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2673), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2677), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2679), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - ACTIONS(1970), 1, - anon_sym_COLON, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1935), 3, + sym__ternary_qmark, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37257] = 25, - ACTIONS(1333), 1, + [62154] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1967), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2663), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2671), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2673), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2689), 1, sym__ternary_qmark, - ACTIONS(1972), 1, - anon_sym_RBRACK, - STATE(528), 1, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2657), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2667), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2675), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2685), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2659), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2681), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37344] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1979), 1, - anon_sym_async, - ACTIONS(1981), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1976), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1983), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1974), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1421), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1430), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [37422] = 24, - ACTIONS(1333), 1, + [62241] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2784), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37506] = 24, - ACTIONS(1586), 1, + [62328] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1724), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1732), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2517), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2519), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2521), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2525), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2527), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2529), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2533), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2535), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2543), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2545), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(2786), 1, + anon_sym_COLON, + STATE(955), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1734), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2513), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2523), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2539), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2541), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2515), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2537), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - [37590] = 20, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1989), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(1993), 1, - anon_sym_async, - ACTIONS(1997), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1292), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1999), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1985), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1291), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37660] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2005), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37731] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2025), 1, - anon_sym_RBRACE, - ACTIONS(2027), 1, - anon_sym_SEMI, - STATE(872), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37802] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2029), 1, - anon_sym_RBRACE, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37873] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2031), 1, - anon_sym_RBRACE, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37944] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2033), 1, - anon_sym_RBRACE, - ACTIONS(2035), 1, - anon_sym_SEMI, - STATE(873), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38015] = 18, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2041), 1, - anon_sym_async, - ACTIONS(2043), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1995), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2045), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2037), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1430), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [38080] = 21, - ACTIONS(2050), 1, - anon_sym_STAR, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(2055), 1, - anon_sym_SEMI, - ACTIONS(2058), 1, - anon_sym_LBRACK, - ACTIONS(2061), 1, - anon_sym_DQUOTE, - ACTIONS(2064), 1, - anon_sym_SQUOTE, - ACTIONS(2067), 1, - anon_sym_async, - ACTIONS(2073), 1, - anon_sym_AT, - ACTIONS(2076), 1, - anon_sym_static, - ACTIONS(2079), 1, - aux_sym_method_definition_token1, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + anon_sym_instanceof, + [62415] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1973), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2671), 1, + anon_sym_CARET, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2070), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2082), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2047), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38151] = 14, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2657), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2667), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2675), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2685), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2659), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2681), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62502] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2089), 1, - anon_sym_RBRACE, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2788), 1, + anon_sym_COLON, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, - sym_number, - sym_private_property_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2085), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38208] = 14, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62589] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2095), 1, - anon_sym_RBRACE, - STATE(1335), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2790), 1, + anon_sym_COLON, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, - sym_number, - sym_private_property_identifier, - STATE(1332), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2093), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38265] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2513), 2, anon_sym_STAR, - ACTIONS(2009), 1, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62676] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2097), 1, - anon_sym_RBRACE, - ACTIONS(2099), 1, - anon_sym_SEMI, - STATE(870), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2517), 1, + anon_sym_AMP_AMP, + ACTIONS(2519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2521), 1, + anon_sym_GT_GT, + ACTIONS(2525), 1, + anon_sym_AMP, + ACTIONS(2527), 1, + anon_sym_CARET, + ACTIONS(2529), 1, + anon_sym_PIPE, + ACTIONS(2533), 1, + anon_sym_PERCENT, + ACTIONS(2535), 1, + anon_sym_STAR_STAR, + ACTIONS(2543), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2545), 1, + sym__ternary_qmark, + ACTIONS(2792), 1, + anon_sym_COLON, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [38336] = 12, - ACTIONS(673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2513), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2523), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2531), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2539), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2515), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2537), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62763] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1871), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2671), 1, + anon_sym_CARET, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2103), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1421), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(2101), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [38388] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2657), 2, anon_sym_STAR, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_SLASH, + ACTIONS(2667), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2675), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2685), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2659), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2681), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62850] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1891), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2671), 1, + anon_sym_CARET, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2657), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2667), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2675), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2685), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2659), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2681), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [62937] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [38444] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1915), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2671), 1, + anon_sym_CARET, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2657), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2667), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2675), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2685), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2659), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2681), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63024] = 25, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38502] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1756), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2671), 1, + anon_sym_CARET, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [38558] = 16, - ACTIONS(101), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2657), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2667), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2675), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2685), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2659), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2681), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63111] = 25, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, + anon_sym_STAR, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(169), 1, + anon_sym_static, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2701), 1, + anon_sym_async, + ACTIONS(2794), 1, + sym_identifier, + ACTIONS(2796), 1, anon_sym_RBRACE, - STATE(1311), 1, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1774), 1, + aux_sym_non_reserved_keyword, + STATE(2025), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(2064), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(173), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(2034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38616] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + STATE(2047), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2061), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [63198] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2715), 1, + anon_sym_AMP_AMP, + ACTIONS(2717), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2719), 1, + anon_sym_GT_GT, + ACTIONS(2723), 1, + anon_sym_AMP, + ACTIONS(2725), 1, + anon_sym_CARET, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2731), 1, + anon_sym_PERCENT, + ACTIONS(2733), 1, + anon_sym_STAR_STAR, + ACTIONS(2741), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2743), 1, + sym__ternary_qmark, + ACTIONS(2798), 1, + anon_sym_RBRACK, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [38672] = 16, - ACTIONS(101), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2711), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2721), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2729), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2737), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2739), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2713), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2735), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63285] = 25, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, + anon_sym_STAR, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(169), 1, + anon_sym_static, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2107), 1, + ACTIONS(2701), 1, + anon_sym_async, + ACTIONS(2800), 1, + sym_identifier, + ACTIONS(2802), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1772), 1, + aux_sym_non_reserved_keyword, + STATE(2025), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(2064), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(173), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + STATE(2034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38730] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + STATE(2047), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2061), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [63372] = 25, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2013), 1, + anon_sym_BQUOTE, + ACTIONS(2661), 1, + anon_sym_AMP_AMP, + ACTIONS(2663), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2665), 1, + anon_sym_GT_GT, + ACTIONS(2669), 1, + anon_sym_AMP, + ACTIONS(2671), 1, + anon_sym_CARET, + ACTIONS(2673), 1, + anon_sym_PIPE, + ACTIONS(2677), 1, + anon_sym_PERCENT, + ACTIONS(2679), 1, + anon_sym_STAR_STAR, + ACTIONS(2687), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2689), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2657), 2, anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + anon_sym_SLASH, + ACTIONS(2667), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2675), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2683), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2685), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2659), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2681), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63459] = 17, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1945), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1935), 7, + sym__ternary_qmark, + 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, + [63529] = 15, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38788] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1935), 10, + sym__ternary_qmark, + 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, + [63595] = 24, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63679] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38846] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 12, anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + 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(1935), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [63735] = 22, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1935), 3, + sym__ternary_qmark, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63815] = 13, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [38902] = 16, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_SLASH, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1945), 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(1935), 12, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [63877] = 24, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1722), 1, + anon_sym_LBRACK, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63961] = 24, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [38960] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64045] = 23, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39016] = 15, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1935), 2, + sym__ternary_qmark, + anon_sym_QMARK_QMARK, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64127] = 24, + ACTIONS(1921), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39072] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1923), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(1929), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(1060), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64211] = 24, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39123] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64295] = 20, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39174] = 14, - ACTIONS(2009), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2119), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, - anon_sym_async, - ACTIONS(2127), 1, - sym__automatic_semicolon, - STATE(962), 1, - sym_statement_block, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2824), 1, + anon_sym_AMP, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2123), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2125), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 3, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [64371] = 12, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2001), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39227] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1945), 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(1935), 12, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [64431] = 10, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39278] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 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(1935), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [64487] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39329] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [64565] = 24, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39380] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64649] = 21, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39431] = 13, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(1945), 1, + anon_sym_PIPE, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 4, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [64727] = 24, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39481] = 13, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2133), 1, - anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + ACTIONS(2820), 1, + anon_sym_AMP_AMP, + ACTIONS(2822), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2824), 1, + anon_sym_AMP, + ACTIONS(2826), 1, + anon_sym_CARET, + ACTIONS(2828), 1, + anon_sym_PIPE, + ACTIONS(2834), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2836), 1, + sym__ternary_qmark, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64811] = 19, + ACTIONS(1720), 1, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39531] = 14, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(1722), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2133), 1, - anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1732), 1, + sym_optional_chain, + ACTIONS(2808), 1, + anon_sym_GT_GT, + ACTIONS(2814), 1, + anon_sym_PERCENT, + ACTIONS(2816), 1, + anon_sym_STAR_STAR, + STATE(955), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39583] = 18, - ACTIONS(91), 1, + ACTIONS(1734), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1945), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2804), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2810), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2830), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2832), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2806), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2818), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1935), 5, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [64885] = 22, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2135), 1, - anon_sym_export, - ACTIONS(2137), 1, + ACTIONS(119), 1, anon_sym_STAR, - ACTIONS(2139), 1, - anon_sym_class, - ACTIONS(2141), 1, - anon_sym_async, - ACTIONS(2145), 1, + ACTIONS(163), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(169), 1, anon_sym_static, - ACTIONS(2147), 1, + ACTIONS(171), 1, aux_sym_method_definition_token1, - ACTIONS(2149), 1, - anon_sym_get, - ACTIONS(2151), 1, - anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(872), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2143), 2, - sym_number, - sym_private_property_identifier, - STATE(1588), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [39643] = 12, - ACTIONS(854), 1, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, + ACTIONS(2701), 1, anon_sym_async, + ACTIONS(2838), 1, sym_identifier, - anon_sym_static, - [39691] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1857), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(173), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, + ACTIONS(2703), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2840), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(2034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [39736] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2155), 1, + STATE(2083), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2094), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [64964] = 21, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2159), 2, - anon_sym_get, - anon_sym_set, - STATE(1484), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, + ACTIONS(169), 1, anon_sym_static, - [39779] = 11, - ACTIONS(854), 1, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2161), 1, - anon_sym_STAR, - ACTIONS(2165), 1, - anon_sym_get, - ACTIONS(2167), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2163), 2, - sym_number, - sym_private_property_identifier, - STATE(1486), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, + ACTIONS(2701), 1, anon_sym_async, + ACTIONS(2843), 1, sym_identifier, - anon_sym_static, - [39824] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2117), 1, - anon_sym_STAR, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(2847), 1, + anon_sym_RBRACE, + ACTIONS(2849), 1, + anon_sym_DOT_DOT_DOT, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1844), 1, + aux_sym_non_reserved_keyword, + STATE(1973), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2171), 2, + ACTIONS(173), 2, anon_sym_get, anon_sym_set, - STATE(1458), 3, + ACTIONS(2851), 2, + sym_number, + sym_private_property_identifier, + STATE(1971), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(2069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, + [65035] = 19, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(119), 1, + anon_sym_STAR, + ACTIONS(169), 1, anon_sym_static, - [39867] = 12, - ACTIONS(854), 1, + ACTIONS(171), 1, + aux_sym_method_definition_token1, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(2701), 1, anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + ACTIONS(2849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2853), 1, + sym_identifier, + STATE(1586), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1959), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(173), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, + ACTIONS(2851), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2855), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(2069), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39914] = 16, - ACTIONS(91), 1, + STATE(2083), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [65101] = 22, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(2173), 1, + ACTIONS(2857), 1, + sym_identifier, + ACTIONS(2859), 1, anon_sym_STAR, - ACTIONS(2175), 1, + ACTIONS(2861), 1, + anon_sym_RBRACE, + ACTIONS(2863), 1, + anon_sym_SEMI, + ACTIONS(2865), 1, + anon_sym_LBRACK, + ACTIONS(2867), 1, anon_sym_async, - ACTIONS(2179), 1, + ACTIONS(2871), 1, anon_sym_static, - ACTIONS(2181), 1, + ACTIONS(2873), 1, aux_sym_method_definition_token1, - ACTIONS(2183), 1, - anon_sym_get, - ACTIONS(2185), 1, - anon_sym_set, - STATE(944), 1, + STATE(1572), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2177), 2, + ACTIONS(2869), 2, sym_number, sym_private_property_identifier, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1114), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [39969] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2187), 1, - anon_sym_STAR, - ACTIONS(2191), 1, + ACTIONS(2875), 2, anon_sym_get, - ACTIONS(2193), 1, anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2189), 2, - sym_number, - sym_private_property_identifier, - STATE(1504), 3, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [40014] = 10, - ACTIONS(854), 1, + [65173] = 22, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2857), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40057] = 12, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2195), 1, + ACTIONS(2859), 1, anon_sym_STAR, - ACTIONS(2197), 1, + ACTIONS(2865), 1, + anon_sym_LBRACK, + ACTIONS(2867), 1, anon_sym_async, - ACTIONS(2201), 1, - anon_sym_get, - ACTIONS(2203), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2199), 2, - sym_number, - sym_private_property_identifier, - STATE(1109), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2001), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, + ACTIONS(2871), 1, anon_sym_static, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [40104] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2133), 1, + ACTIONS(2873), 1, + aux_sym_method_definition_token1, + ACTIONS(2877), 1, anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + ACTIONS(2879), 1, + anon_sym_SEMI, + STATE(1574), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, + aux_sym_export_statement_repeat1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, + sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2869), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + ACTIONS(2875), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40149] = 16, - ACTIONS(91), 1, + [65245] = 22, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2137), 1, + ACTIONS(2857), 1, + sym_identifier, + ACTIONS(2859), 1, anon_sym_STAR, - ACTIONS(2141), 1, + ACTIONS(2865), 1, + anon_sym_LBRACK, + ACTIONS(2867), 1, anon_sym_async, - ACTIONS(2145), 1, + ACTIONS(2871), 1, anon_sym_static, - ACTIONS(2147), 1, + ACTIONS(2873), 1, aux_sym_method_definition_token1, - ACTIONS(2149), 1, - anon_sym_get, - ACTIONS(2151), 1, - anon_sym_set, - STATE(944), 1, + ACTIONS(2879), 1, + anon_sym_SEMI, + ACTIONS(2881), 1, + anon_sym_RBRACE, + STATE(1574), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2143), 2, + ACTIONS(2869), 2, sym_number, sym_private_property_identifier, - ACTIONS(872), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1588), 3, + ACTIONS(2875), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - [40204] = 8, - ACTIONS(854), 1, + [65317] = 22, + ACTIONS(2883), 1, + sym_identifier, + ACTIONS(2886), 1, + anon_sym_STAR, + ACTIONS(2889), 1, + anon_sym_RBRACE, + ACTIONS(2891), 1, + anon_sym_SEMI, + ACTIONS(2894), 1, + anon_sym_LBRACK, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2900), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(2903), 1, + anon_sym_async, + ACTIONS(2909), 1, + anon_sym_AT, + ACTIONS(2912), 1, + anon_sym_static, + ACTIONS(2915), 1, + aux_sym_method_definition_token1, + STATE(1574), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, + aux_sym_export_statement_repeat1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, + sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + ACTIONS(2918), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40242] = 6, - ACTIONS(2209), 1, - anon_sym_LPAREN, - ACTIONS(2211), 1, - anon_sym_DOT, - STATE(1004), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2205), 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(2207), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, + [65389] = 22, + ACTIONS(89), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [40276] = 8, - ACTIONS(854), 1, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2857), 1, + sym_identifier, + ACTIONS(2859), 1, + anon_sym_STAR, + ACTIONS(2865), 1, anon_sym_LBRACK, + ACTIONS(2867), 1, + anon_sym_async, + ACTIONS(2871), 1, + anon_sym_static, + ACTIONS(2873), 1, + aux_sym_method_definition_token1, + ACTIONS(2921), 1, + anon_sym_RBRACE, + ACTIONS(2923), 1, + anon_sym_SEMI, + STATE(1573), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, + aux_sym_export_statement_repeat1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, + sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2213), 2, + ACTIONS(2869), 2, sym_number, sym_private_property_identifier, - STATE(1489), 3, + ACTIONS(2875), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40314] = 8, - ACTIONS(854), 1, + [65461] = 22, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2857), 1, + sym_identifier, + ACTIONS(2859), 1, + anon_sym_STAR, + ACTIONS(2865), 1, anon_sym_LBRACK, + ACTIONS(2867), 1, + anon_sym_async, + ACTIONS(2871), 1, + anon_sym_static, + ACTIONS(2873), 1, + aux_sym_method_definition_token1, + ACTIONS(2879), 1, + anon_sym_SEMI, + ACTIONS(2925), 1, + anon_sym_RBRACE, + STATE(1574), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, + aux_sym_export_statement_repeat1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, + sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2215), 2, + ACTIONS(2869), 2, sym_number, sym_private_property_identifier, - STATE(1488), 3, + ACTIONS(2875), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40352] = 8, - ACTIONS(854), 1, + [65533] = 22, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2857), 1, + sym_identifier, + ACTIONS(2859), 1, + anon_sym_STAR, + ACTIONS(2865), 1, anon_sym_LBRACK, + ACTIONS(2867), 1, + anon_sym_async, + ACTIONS(2871), 1, + anon_sym_static, + ACTIONS(2873), 1, + aux_sym_method_definition_token1, + ACTIONS(2927), 1, + anon_sym_RBRACE, + ACTIONS(2929), 1, + anon_sym_SEMI, + STATE(1576), 1, + aux_sym_class_body_repeat1, + STATE(1585), 1, + aux_sym_export_statement_repeat1, + STATE(1656), 1, + sym_class_static_block, + STATE(1657), 1, + sym_method_definition, + STATE(1661), 1, + sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + STATE(2124), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2217), 2, + ACTIONS(2869), 2, sym_number, sym_private_property_identifier, - STATE(1505), 3, + ACTIONS(2875), 2, + anon_sym_get, + anon_sym_set, + STATE(1801), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, + [65605] = 19, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(2931), 1, anon_sym_export, - anon_sym_let, + ACTIONS(2933), 1, + anon_sym_STAR, + ACTIONS(2935), 1, + anon_sym_class, + ACTIONS(2937), 1, anon_sym_async, - sym_identifier, + ACTIONS(2941), 1, anon_sym_static, + ACTIONS(2943), 1, + aux_sym_method_definition_token1, + ACTIONS(2945), 1, anon_sym_get, + ACTIONS(2947), 1, anon_sym_set, - [40390] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2939), 2, sym_number, sym_private_property_identifier, - STATE(1458), 3, + STATE(2267), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40428] = 9, - ACTIONS(854), 1, + [65667] = 15, + ACTIONS(1017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, + ACTIONS(2949), 1, + sym_identifier, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(2953), 1, + anon_sym_RBRACE, + STATE(1850), 1, + aux_sym_non_reserved_keyword, + STATE(2025), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2955), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, + STATE(2047), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2370), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40468] = 8, - ACTIONS(854), 1, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [65721] = 15, + ACTIONS(1017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(2957), 1, + sym_identifier, + ACTIONS(2959), 1, + anon_sym_RBRACE, + STATE(1839), 1, + aux_sym_non_reserved_keyword, + STATE(2067), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2219), 2, + ACTIONS(2955), 2, sym_number, sym_private_property_identifier, - STATE(1506), 3, + STATE(2060), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2370), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [40506] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2221), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2223), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [65775] = 13, + ACTIONS(1017), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1172), 1, anon_sym_DQUOTE, + ACTIONS(1174), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40533] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(2699), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40560] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2961), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40587] = 3, + STATE(1956), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2955), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40614] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, + ACTIONS(2963), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, + STATE(2094), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(2370), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(2436), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [65824] = 16, + ACTIONS(89), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [40641] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2233), 9, - anon_sym_export, - anon_sym_let, - anon_sym_DOT, + ACTIONS(1118), 1, + anon_sym_LBRACE, + ACTIONS(1124), 1, anon_sym_class, + ACTIONS(1126), 1, anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2235), 9, + ACTIONS(1128), 1, + anon_sym_function, + ACTIONS(2965), 1, 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, - [40668] = 3, + ACTIONS(2967), 1, + anon_sym_default, + ACTIONS(2969), 1, + anon_sym_var, + STATE(766), 1, + sym_declaration, + STATE(1661), 1, + sym_decorator, + STATE(1886), 1, + aux_sym_export_statement_repeat1, + STATE(1948), 1, + sym_export_clause, + STATE(2079), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, + ACTIONS(2971), 2, anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_const, + STATE(765), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [65879] = 15, + ACTIONS(1194), 1, anon_sym_DQUOTE, + ACTIONS(1196), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40695] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2857), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2865), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40722] = 3, + ACTIONS(2973), 1, + anon_sym_STAR, + ACTIONS(2975), 1, + anon_sym_LBRACE, + ACTIONS(2977), 1, + anon_sym_async, + ACTIONS(2983), 1, + sym__automatic_semicolon, + STATE(1647), 1, + sym_statement_block, + STATE(1897), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2979), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40749] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(2981), 2, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(95), 3, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, + anon_sym_EQ, + STATE(1812), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [65932] = 16, + ACTIONS(89), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [40776] = 3, + ACTIONS(1118), 1, + anon_sym_LBRACE, + ACTIONS(1124), 1, + anon_sym_class, + ACTIONS(1126), 1, + anon_sym_async, + ACTIONS(1128), 1, + anon_sym_function, + ACTIONS(2965), 1, + anon_sym_STAR, + ACTIONS(2969), 1, + anon_sym_var, + ACTIONS(2985), 1, + anon_sym_default, + STATE(766), 1, + sym_declaration, + STATE(1661), 1, + sym_decorator, + STATE(1886), 1, + aux_sym_export_statement_repeat1, + STATE(1948), 1, + sym_export_clause, + STATE(2079), 1, + sym_namespace_export, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2237), 7, - anon_sym_export, + ACTIONS(2971), 2, anon_sym_let, - anon_sym_async, + anon_sym_const, + STATE(765), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [65987] = 17, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1194), 1, + anon_sym_DQUOTE, + ACTIONS(1196), 1, + anon_sym_SQUOTE, + ACTIONS(2857), 1, sym_identifier, + ACTIONS(2865), 1, + anon_sym_LBRACK, + ACTIONS(2987), 1, + anon_sym_STAR, + ACTIONS(2989), 1, + anon_sym_async, + ACTIONS(2993), 1, anon_sym_static, + ACTIONS(2995), 1, + aux_sym_method_definition_token1, + ACTIONS(2997), 1, anon_sym_get, + ACTIONS(2999), 1, anon_sym_set, - ACTIONS(2239), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40803] = 3, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(1897), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(2991), 2, + sym_number, + sym_private_property_identifier, + STATE(1813), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [66043] = 17, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, sym_identifier, + ACTIONS(2933), 1, + anon_sym_STAR, + ACTIONS(2937), 1, + anon_sym_async, + ACTIONS(2941), 1, anon_sym_static, + ACTIONS(2943), 1, + aux_sym_method_definition_token1, + ACTIONS(2945), 1, anon_sym_get, + ACTIONS(2947), 1, anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2939), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40830] = 3, + STATE(2267), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [66099] = 6, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_DOT, + STATE(1639), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2241), 7, + ACTIONS(3001), 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(2243), 11, + ACTIONS(3003), 8, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -71011,71 +119171,87 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40857] = 3, + [66132] = 11, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3009), 1, + anon_sym_STAR, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(1166), 2, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(1178), 2, sym_number, sym_private_property_identifier, + STATE(2216), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(95), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [66175] = 13, + ACTIONS(89), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [40884] = 3, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1120), 1, + anon_sym_var, + ACTIONS(1124), 1, + anon_sym_class, + ACTIONS(1126), 1, + anon_sym_async, + ACTIONS(1128), 1, + anon_sym_function, + ACTIONS(3011), 1, + anon_sym_default, + STATE(715), 1, + sym_declaration, + STATE(1661), 1, + sym_decorator, + STATE(1886), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, + ACTIONS(1122), 2, anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2247), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40911] = 3, + anon_sym_const, + STATE(765), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [66221] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(3013), 8, 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(2247), 11, + ACTIONS(3015), 9, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -71083,67 +119259,76 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40938] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [66247] = 13, + ACTIONS(1194), 1, + anon_sym_DQUOTE, + ACTIONS(1196), 1, + anon_sym_SQUOTE, + ACTIONS(2857), 1, sym_identifier, - anon_sym_static, + ACTIONS(2865), 1, + anon_sym_LBRACK, + ACTIONS(3017), 1, + anon_sym_STAR, + ACTIONS(3019), 1, + anon_sym_async, + ACTIONS(3023), 1, anon_sym_get, + ACTIONS(3025), 1, anon_sym_set, - ACTIONS(2247), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + STATE(1897), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3021), 2, sym_number, sym_private_property_identifier, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1806), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [66293] = 6, + ACTIONS(3031), 1, anon_sym_AT, - aux_sym_method_definition_token1, - [40965] = 3, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(3027), 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(2247), 11, + ACTIONS(3029), 7, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, aux_sym_method_definition_token1, - [40992] = 3, + [66325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3034), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(3036), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71155,19 +119340,17 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41019] = 3, + [66350] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3038), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(3040), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71179,72 +119362,50 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41046] = 6, - ACTIONS(2253), 1, - anon_sym_AT, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2251), 7, - anon_sym_STAR, + [66375] = 11, + ACTIONS(1170), 1, anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, + ACTIONS(1174), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2249), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, - anon_sym_async, + ACTIONS(1180), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41079] = 3, + ACTIONS(2973), 1, + anon_sym_STAR, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(2981), 2, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(3042), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41106] = 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2223), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [66416] = 4, + ACTIONS(3044), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(859), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(857), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71254,19 +119415,17 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41133] = 3, + [66443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3046), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(3048), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71278,22 +119437,19 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41160] = 4, - ACTIONS(2256), 1, - sym__automatic_semicolon, + [66468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(499), 10, + ACTIONS(3052), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71303,19 +119459,17 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41189] = 3, + [66493] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3054), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(3056), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71327,19 +119481,17 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41216] = 3, + [66518] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2258), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3054), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2260), 11, + ACTIONS(3056), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71351,19 +119503,17 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41243] = 3, + [66543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3054), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(3056), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71375,19 +119525,17 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41270] = 3, + [66568] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(3052), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71399,68 +119547,48 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41297] = 4, - ACTIONS(2262), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(505), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(503), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + [66593] = 12, + ACTIONS(1170), 1, anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, + ACTIONS(1174), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41326] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2225), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(1180), 1, sym_identifier, - anon_sym_static, + ACTIONS(3058), 1, + anon_sym_STAR, + ACTIONS(3062), 1, anon_sym_get, + ACTIONS(3064), 1, anon_sym_set, - ACTIONS(2227), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3060), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41353] = 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2250), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [66636] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2264), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3066), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2266), 11, + ACTIONS(3068), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71472,43 +119600,50 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41380] = 3, + [66661] = 12, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1124), 1, + anon_sym_class, + ACTIONS(1126), 1, + anon_sym_async, + ACTIONS(1128), 1, + anon_sym_function, + ACTIONS(2969), 1, + anon_sym_var, + ACTIONS(3070), 1, + anon_sym_default, + STATE(715), 1, + sym_declaration, + STATE(1661), 1, + sym_decorator, + STATE(1886), 1, + aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, - anon_sym_export, + ACTIONS(2971), 2, anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(499), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41406] = 3, + anon_sym_const, + STATE(765), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [66704] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3054), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(519), 10, + ACTIONS(3056), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71518,23 +119653,21 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41432] = 4, - ACTIONS(2272), 1, - anon_sym_SEMI, + [66729] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3072), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2270), 9, + ACTIONS(3074), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -71542,110 +119675,50 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41460] = 9, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + [66754] = 12, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [41498] = 11, - ACTIONS(854), 1, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2279), 1, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3076), 1, anon_sym_STAR, - ACTIONS(2283), 1, + ACTIONS(3080), 1, anon_sym_get, - ACTIONS(2285), 1, + ACTIONS(3082), 1, anon_sym_set, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(3078), 2, sym_number, sym_private_property_identifier, - STATE(1462), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41540] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(95), 3, anon_sym_LPAREN, - ACTIONS(2287), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2289), 2, - anon_sym_get, - anon_sym_set, - STATE(1610), 3, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2234), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41580] = 3, + [66797] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2291), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2293), 10, + ACTIONS(3052), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71655,20 +119728,19 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41606] = 3, + [66822] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2295), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2297), 10, + ACTIONS(3052), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71678,177 +119750,63 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41632] = 13, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, - anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [41678] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2301), 1, - anon_sym_STAR, - ACTIONS(2305), 1, - anon_sym_get, - ACTIONS(2307), 1, - anon_sym_set, + [66847] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, - sym_number, - sym_private_property_identifier, - STATE(1578), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, - [41720] = 12, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2309), 1, - anon_sym_STAR, - ACTIONS(2311), 1, - anon_sym_async, - ACTIONS(2315), 1, anon_sym_get, - ACTIONS(2317), 1, anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2313), 2, - sym_number, - sym_private_property_identifier, - STATE(1558), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [41764] = 10, - ACTIONS(854), 1, + ACTIONS(3052), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2155), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2157), 2, sym_number, sym_private_property_identifier, - ACTIONS(2159), 2, - anon_sym_get, - anon_sym_set, - STATE(1484), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41804] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2319), 1, - anon_sym_STAR, - ACTIONS(2323), 1, - anon_sym_get, - ACTIONS(2325), 1, - anon_sym_set, + anon_sym_AT, + aux_sym_method_definition_token1, + [66872] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 2, - sym_number, - sym_private_property_identifier, - STATE(1508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, - [41846] = 3, + anon_sym_get, + anon_sym_set, + ACTIONS(3052), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [66897] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2329), 10, + ACTIONS(3052), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71858,51 +119816,41 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41872] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR, - ACTIONS(2335), 1, - anon_sym_get, - ACTIONS(2337), 1, - anon_sym_set, + [66922] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, - sym_number, - sym_private_property_identifier, - STATE(1405), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, - [41914] = 3, + anon_sym_get, + anon_sym_set, + ACTIONS(3052), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [66947] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2270), 10, + ACTIONS(3052), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71912,129 +119860,140 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41940] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [66972] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, - sym_number, - sym_private_property_identifier, - STATE(1484), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3054), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41975] = 8, - ACTIONS(854), 1, + ACTIONS(3056), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [66997] = 4, + ACTIONS(3084), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 2, - sym_number, - sym_private_property_identifier, - STATE(1605), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(865), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42010] = 8, - ACTIONS(854), 1, + ACTIONS(863), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67024] = 11, + ACTIONS(1170), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3086), 1, + anon_sym_STAR, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 2, + ACTIONS(3088), 2, sym_number, sym_private_property_identifier, - STATE(1409), 3, + ACTIONS(3090), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2232), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + [67065] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42045] = 8, - ACTIONS(854), 1, + ACTIONS(3052), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67090] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 2, - sym_number, - sym_private_property_identifier, - STATE(1585), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3092), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42080] = 3, + ACTIONS(3094), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67115] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, + ACTIONS(3054), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1450), 8, + ACTIONS(3056), 11, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -72042,655 +120001,385 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42105] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [67140] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2345), 2, - sym_number, - sym_private_property_identifier, - STATE(1408), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3034), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42140] = 11, - ACTIONS(854), 1, + ACTIONS(3036), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2347), 1, - anon_sym_STAR, - ACTIONS(2349), 1, - anon_sym_async, - ACTIONS(2353), 1, - anon_sym_get, - ACTIONS(2355), 1, - anon_sym_set, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67165] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 2, - sym_number, - sym_private_property_identifier, - STATE(1410), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, + ACTIONS(3034), 5, + anon_sym_async, sym_identifier, anon_sym_static, - [42181] = 8, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(3036), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67190] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2357), 2, - sym_number, - sym_private_property_identifier, - STATE(1414), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3034), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42216] = 10, - ACTIONS(854), 1, + ACTIONS(3036), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2359), 1, - anon_sym_async, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2169), 2, sym_number, sym_private_property_identifier, - ACTIONS(2171), 2, - anon_sym_get, - anon_sym_set, - STATE(1458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42255] = 12, - ACTIONS(91), 1, anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, + aux_sym_method_definition_token1, + [67215] = 12, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(1124), 1, anon_sym_class, - ACTIONS(784), 1, + ACTIONS(1126), 1, anon_sym_async, - ACTIONS(786), 1, + ACTIONS(1128), 1, anon_sym_function, - ACTIONS(2361), 1, + ACTIONS(2969), 1, + anon_sym_var, + ACTIONS(3096), 1, anon_sym_default, - STATE(378), 1, + STATE(715), 1, sym_declaration, - STATE(1006), 1, + STATE(1661), 1, sym_decorator, - STATE(1220), 1, + STATE(1886), 1, aux_sym_export_statement_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(770), 2, + ACTIONS(2971), 2, anon_sym_let, anon_sym_const, - STATE(412), 5, + STATE(765), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [42298] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [67258] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3034), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42333] = 8, - ACTIONS(854), 1, + ACTIONS(3036), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67283] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, - sym_number, - sym_private_property_identifier, - STATE(1571), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3034), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42368] = 11, - ACTIONS(854), 1, + ACTIONS(3036), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2365), 1, - anon_sym_STAR, - ACTIONS(2367), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_get, - ACTIONS(2373), 1, - anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2369), 2, sym_number, sym_private_property_identifier, - STATE(1487), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42409] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + anon_sym_AT, + aux_sym_method_definition_token1, + [67308] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, - sym_number, - sym_private_property_identifier, - STATE(1499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3050), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42444] = 8, - ACTIONS(854), 1, + ACTIONS(3052), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2377), 2, sym_number, sym_private_property_identifier, - STATE(1501), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42479] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + anon_sym_AT, + aux_sym_method_definition_token1, + [67333] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2379), 2, - sym_number, - sym_private_property_identifier, - STATE(1467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42514] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, + ACTIONS(3098), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67355] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [42553] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3100), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67377] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2381), 2, - sym_number, - sym_private_property_identifier, - STATE(1509), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42588] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3102), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67399] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2383), 2, - sym_number, - sym_private_property_identifier, - STATE(1614), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42623] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3104), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2385), 2, - sym_number, - sym_private_property_identifier, - STATE(1531), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42658] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3106), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67443] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2387), 2, - sym_number, - sym_private_property_identifier, - STATE(1532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3108), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42693] = 8, - ACTIONS(854), 1, + ACTIONS(3110), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2389), 2, sym_number, sym_private_property_identifier, - STATE(1516), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42728] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + anon_sym_AT, + aux_sym_method_definition_token1, + [67467] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2391), 2, - sym_number, - sym_private_property_identifier, - STATE(1517), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42763] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3112), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67489] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2393), 2, - sym_number, - sym_private_property_identifier, - STATE(1519), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(879), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42798] = 8, - ACTIONS(854), 1, + ACTIONS(877), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2395), 2, sym_number, sym_private_property_identifier, - STATE(1520), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42833] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + anon_sym_AT, + aux_sym_method_definition_token1, + [67513] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2397), 2, - sym_number, - sym_private_property_identifier, - STATE(1422), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42868] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(3114), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2399), 2, - sym_number, - sym_private_property_identifier, - STATE(1553), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1766), 7, anon_sym_export, - anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42903] = 8, - ACTIONS(854), 1, + ACTIONS(1768), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2401), 2, sym_number, sym_private_property_identifier, - STATE(1554), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42938] = 3, + anon_sym_AT, + aux_sym_method_definition_token1, + [67559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 8, + ACTIONS(3116), 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(1514), 8, + ACTIONS(3118), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -72699,20 +120388,59 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42963] = 3, + [67583] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3120), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67605] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3122), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67627] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 8, + ACTIONS(3001), 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(1530), 8, + ACTIONS(3003), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -72721,20 +120449,59 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [42988] = 3, + [67651] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3124), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67673] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3126), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67695] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, + ACTIONS(1873), 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(2207), 8, + ACTIONS(1875), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -72743,52 +120510,40 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43013] = 12, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, - anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, + [67719] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [43056] = 3, + ACTIONS(3128), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67741] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2403), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, + ACTIONS(3130), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2405), 8, + ACTIONS(3132), 10, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -72796,48 +120551,80 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43081] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [67765] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2407), 2, - sym_number, - sym_private_property_identifier, - STATE(1465), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43116] = 3, + ACTIONS(3134), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67787] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2409), 8, - anon_sym_export, - anon_sym_let, - anon_sym_class, + ACTIONS(3136), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67809] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3138), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67831] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3140), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2411), 8, + ACTIONS(3142), 10, anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -72845,213 +120632,187 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43141] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [67855] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2413), 2, - sym_number, - sym_private_property_identifier, - STATE(1502), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43176] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3144), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67877] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, - sym_number, - sym_private_property_identifier, - STATE(1610), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + ACTIONS(3146), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67899] = 13, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, sym_identifier, - anon_sym_static, + ACTIONS(3148), 1, + anon_sym_STAR, + ACTIONS(3150), 1, + anon_sym_async, + ACTIONS(3154), 1, anon_sym_get, + ACTIONS(3156), 1, anon_sym_set, - [43208] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2415), 2, + ACTIONS(3152), 2, sym_number, sym_private_property_identifier, - STATE(1515), 3, + STATE(2095), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43240] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [67943] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2417), 2, - sym_number, - sym_private_property_identifier, - STATE(1485), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43272] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3158), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [67965] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2419), 2, - sym_number, - sym_private_property_identifier, - STATE(1463), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3160), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43304] = 7, - ACTIONS(854), 1, + ACTIONS(3162), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [67989] = 4, + ACTIONS(3164), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2421), 2, - sym_number, - sym_private_property_identifier, - STATE(1518), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(3160), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43336] = 7, - ACTIONS(854), 1, + ACTIONS(3162), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [68015] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2423), 2, - sym_number, - sym_private_property_identifier, - STATE(1530), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, + ACTIONS(865), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43368] = 7, - ACTIONS(854), 1, + ACTIONS(863), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [68039] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, - sym_number, - sym_private_property_identifier, - STATE(1499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1782), 7, anon_sym_export, - anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43400] = 2, + ACTIONS(1784), 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, + [68063] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2425), 15, + ACTIONS(3167), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73067,1622 +120828,2639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43422] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [68085] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2427), 2, - sym_number, - sym_private_property_identifier, - STATE(1552), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(3169), 7, anon_sym_export, - anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43454] = 7, - ACTIONS(854), 1, + ACTIONS(3171), 8, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [68109] = 12, + ACTIONS(1170), 1, anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3173), 1, + anon_sym_STAR, + ACTIONS(3175), 1, + anon_sym_async, + ACTIONS(3179), 1, + anon_sym_get, + ACTIONS(3181), 1, + anon_sym_set, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2429), 2, + ACTIONS(3177), 2, sym_number, sym_private_property_identifier, - STATE(1500), 3, + STATE(2133), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [68150] = 12, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, sym_identifier, - anon_sym_static, + ACTIONS(3183), 1, + anon_sym_STAR, + ACTIONS(3187), 1, anon_sym_get, + ACTIONS(3189), 1, anon_sym_set, - [43486] = 2, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2431), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43508] = 2, + ACTIONS(3185), 2, + sym_number, + sym_private_property_identifier, + STATE(2293), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68191] = 12, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3191), 1, + anon_sym_STAR, + ACTIONS(3195), 1, + anon_sym_get, + ACTIONS(3197), 1, + anon_sym_set, + STATE(2408), 1, + aux_sym_non_reserved_keyword, 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, - [43530] = 7, - ACTIONS(854), 1, + ACTIONS(3193), 2, + sym_number, + sym_private_property_identifier, + STATE(2294), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68232] = 11, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(2973), 1, + anon_sym_STAR, + ACTIONS(2977), 1, + anon_sym_async, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2981), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3042), 2, sym_number, sym_private_property_identifier, - STATE(1458), 3, + STATE(2223), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [68271] = 12, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, sym_identifier, - anon_sym_static, + ACTIONS(3199), 1, + anon_sym_STAR, + ACTIONS(3203), 1, anon_sym_get, + ACTIONS(3205), 1, anon_sym_set, - [43562] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2435), 2, + ACTIONS(3201), 2, sym_number, sym_private_property_identifier, - STATE(1503), 3, + STATE(2173), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43594] = 7, - ACTIONS(854), 1, + [68312] = 11, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3207), 1, + anon_sym_STAR, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2437), 2, + ACTIONS(3209), 2, sym_number, sym_private_property_identifier, - STATE(1507), 3, + ACTIONS(3211), 2, + anon_sym_get, + anon_sym_set, + STATE(2196), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [68351] = 12, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(1180), 1, sym_identifier, - anon_sym_static, + ACTIONS(3213), 1, + anon_sym_STAR, + ACTIONS(3215), 1, + anon_sym_async, + ACTIONS(3219), 1, anon_sym_get, + ACTIONS(3221), 1, anon_sym_set, - [43626] = 2, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2439), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43648] = 7, - ACTIONS(854), 1, + ACTIONS(3217), 2, + sym_number, + sym_private_property_identifier, + STATE(2235), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68392] = 12, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(1180), 1, + sym_identifier, + ACTIONS(3223), 1, + anon_sym_STAR, + ACTIONS(3227), 1, + anon_sym_get, + ACTIONS(3229), 1, + anon_sym_set, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2441), 2, + ACTIONS(3225), 2, sym_number, sym_private_property_identifier, - STATE(1416), 3, + STATE(2254), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43680] = 7, - ACTIONS(854), 1, + [68433] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2443), 2, + ACTIONS(3233), 2, sym_number, sym_private_property_identifier, - STATE(1380), 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2236), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43712] = 7, - ACTIONS(854), 1, + [68467] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(3235), 2, sym_number, sym_private_property_identifier, - STATE(1412), 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2251), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43744] = 7, - ACTIONS(854), 1, + [68501] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(3088), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2232), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43776] = 7, - ACTIONS(854), 1, + [68535] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2445), 2, + ACTIONS(3237), 2, sym_number, sym_private_property_identifier, - STATE(1583), 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2252), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, + [68569] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43808] = 2, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2447), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43830] = 7, - ACTIONS(854), 1, + ACTIONS(3239), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2237), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68603] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, + ACTIONS(3042), 2, sym_number, sym_private_property_identifier, - STATE(1571), 3, + ACTIONS(95), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(2223), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43862] = 11, - ACTIONS(2011), 1, + [68637] = 12, + ACTIONS(1188), 1, + anon_sym_LBRACE, + ACTIONS(1192), 1, + anon_sym_DOT, + ACTIONS(1194), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(1196), 1, anon_sym_SQUOTE, - ACTIONS(2449), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(2451), 1, + ACTIONS(3243), 1, anon_sym_STAR, - ACTIONS(2453), 1, - anon_sym_LBRACE, - ACTIONS(2457), 1, - anon_sym_DOT, - STATE(1223), 1, + STATE(1936), 1, sym_string, - STATE(1446), 1, + STATE(2239), 1, sym_import_clause, + STATE(2258), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, + ACTIONS(1190), 2, anon_sym_LPAREN, sym_optional_chain, - STATE(1713), 2, + STATE(2359), 2, sym_namespace_import, sym_named_imports, - [43899] = 8, - ACTIONS(2459), 1, + [68677] = 9, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(95), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(3209), 2, + sym_number, + sym_private_property_identifier, + STATE(2196), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68710] = 12, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2465), 1, - anon_sym_LT_SLASH, - STATE(547), 1, - sym_jsx_closing_element, - STATE(1033), 1, - sym_jsx_opening_element, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3251), 1, + anon_sym_GT, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3257), 1, + anon_sym_SLASH_GT, + STATE(1743), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, + STATE(1854), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [43929] = 8, - ACTIONS(2459), 1, + sym_jsx_attribute, + [68749] = 12, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2469), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1172), 1, - sym_jsx_closing_element, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3251), 1, + anon_sym_GT, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3259), 1, + anon_sym_SLASH_GT, + STATE(1726), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2467), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1035), 4, - sym_jsx_element, + STATE(1854), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [43959] = 11, - ACTIONS(2471), 1, + sym_jsx_attribute, + [68788] = 12, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(3249), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(3255), 1, anon_sym_DOT, - ACTIONS(2483), 1, + ACTIONS(3261), 1, anon_sym_SLASH_GT, - STATE(1054), 1, + STATE(1733), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [43995] = 8, - ACTIONS(2459), 1, + [68827] = 12, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3251), 1, + anon_sym_GT, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3263), 1, + anon_sym_SLASH_GT, + STATE(1752), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1854), 2, + sym_jsx_expression, + sym_jsx_attribute, + [68866] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3265), 2, + sym_number, + sym_private_property_identifier, + STATE(2262), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68898] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3267), 2, + sym_number, + sym_private_property_identifier, + STATE(2272), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68930] = 8, + ACTIONS(3269), 1, + anon_sym_LBRACE, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2469), 1, + ACTIONS(3275), 1, anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1134), 1, + STATE(962), 1, sym_jsx_closing_element, + STATE(1695), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(3271), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1692), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44025] = 11, - ACTIONS(2471), 1, + [68960] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3277), 2, + sym_number, + sym_private_property_identifier, + STATE(2279), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [68992] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3279), 2, + sym_number, + sym_private_property_identifier, + STATE(2284), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69024] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3281), 2, + sym_number, + sym_private_property_identifier, + STATE(2295), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69056] = 11, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(3249), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(3251), 1, + anon_sym_GT, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3257), 1, + anon_sym_SLASH_GT, + STATE(1741), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1854), 2, + sym_jsx_expression, + sym_jsx_attribute, + [69092] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3283), 2, + sym_number, + sym_private_property_identifier, + STATE(2296), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69124] = 11, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(3255), 1, anon_sym_DOT, - ACTIONS(2485), 1, + ACTIONS(3257), 1, anon_sym_SLASH_GT, - STATE(1066), 1, + STATE(1745), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44061] = 8, - ACTIONS(2459), 1, + [69160] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3285), 2, + sym_number, + sym_private_property_identifier, + STATE(2096), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69192] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2465), 1, + ACTIONS(3275), 1, anon_sym_LT_SLASH, - STATE(531), 1, + STATE(981), 1, sym_jsx_closing_element, - STATE(1033), 1, + STATE(1695), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(3287), 2, sym_jsx_text, sym_html_character_reference, - STATE(1032), 4, + STATE(1737), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44091] = 8, - ACTIONS(2459), 1, + [69222] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3289), 2, + sym_number, + sym_private_property_identifier, + STATE(2138), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69254] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(3293), 1, anon_sym_LT_SLASH, - STATE(726), 1, + STATE(1108), 1, sym_jsx_closing_element, - STATE(1033), 1, + STATE(1695), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(3291), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1708), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44121] = 8, - ACTIONS(2459), 1, + [69284] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(3297), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1695), 1, sym_jsx_opening_element, - STATE(1162), 1, + STATE(1845), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 2, + ACTIONS(3295), 2, sym_jsx_text, sym_html_character_reference, - STATE(1041), 4, + STATE(1699), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44151] = 11, - ACTIONS(2471), 1, + [69314] = 11, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(3249), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(3251), 1, + anon_sym_GT, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3259), 1, + anon_sym_SLASH_GT, + STATE(1725), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1854), 2, + sym_jsx_expression, + sym_jsx_attribute, + [69350] = 11, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(3255), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(3259), 1, anon_sym_SLASH_GT, - STATE(1072), 1, + STATE(1727), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44187] = 8, - ACTIONS(2459), 1, + [69386] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3299), 2, + sym_number, + sym_private_property_identifier, + STATE(2265), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69418] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(3297), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1695), 1, sym_jsx_opening_element, - STATE(1178), 1, + STATE(1859), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(3287), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1737), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44217] = 11, - ACTIONS(2471), 1, + [69448] = 11, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(3249), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(3263), 1, anon_sym_SLASH_GT, - STATE(1055), 1, + STATE(1751), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44253] = 8, - ACTIONS(2459), 1, + [69484] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(3303), 1, anon_sym_LT_SLASH, - STATE(678), 1, - sym_jsx_closing_element, - STATE(1033), 1, + STATE(1695), 1, sym_jsx_opening_element, + STATE(1837), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2499), 2, + ACTIONS(3301), 2, sym_jsx_text, sym_html_character_reference, - STATE(1038), 4, + STATE(1704), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44283] = 10, - ACTIONS(2471), 1, + [69514] = 11, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3251), 1, + anon_sym_GT, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3261), 1, + anon_sym_SLASH_GT, + STATE(1732), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1854), 2, + sym_jsx_expression, + sym_jsx_attribute, + [69550] = 11, + ACTIONS(3245), 1, + sym_identifier, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(3255), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(3261), 1, anon_sym_SLASH_GT, - STATE(1061), 1, + STATE(1734), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44316] = 7, - ACTIONS(2501), 1, + [69586] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2507), 1, + ACTIONS(3273), 1, anon_sym_LT, - ACTIONS(2510), 1, + ACTIONS(3303), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1695), 1, sym_jsx_opening_element, + STATE(1830), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2504), 2, + ACTIONS(3287), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1737), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44343] = 10, - ACTIONS(2471), 1, + [69616] = 11, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(3255), 1, anon_sym_DOT, - ACTIONS(2483), 1, + ACTIONS(3263), 1, anon_sym_SLASH_GT, - STATE(1064), 1, + STATE(1754), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44376] = 10, - ACTIONS(2471), 1, + [69652] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1058), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44409] = 10, - ACTIONS(2471), 1, + ACTIONS(3305), 2, + sym_number, + sym_private_property_identifier, + STATE(2134), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69684] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, sym_identifier, - ACTIONS(2473), 1, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3307), 2, + sym_number, + sym_private_property_identifier, + STATE(2137), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69716] = 8, + ACTIONS(3269), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2483), 1, - anon_sym_SLASH_GT, - STATE(1059), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3273), 1, + anon_sym_LT, + ACTIONS(3293), 1, + anon_sym_LT_SLASH, + STATE(1109), 1, + sym_jsx_closing_element, + STATE(1695), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + ACTIONS(3287), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1737), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [44442] = 10, - ACTIONS(2471), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [69746] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3309), 2, + sym_number, + sym_private_property_identifier, + STATE(2297), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69778] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3311), 2, + sym_number, + sym_private_property_identifier, + STATE(2298), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69810] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3313), 2, + sym_number, + sym_private_property_identifier, + STATE(2245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69842] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3315), 2, + sym_number, + sym_private_property_identifier, + STATE(2247), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69874] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3317), 2, + sym_number, + sym_private_property_identifier, + STATE(2248), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69906] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3319), 2, + sym_number, + sym_private_property_identifier, + STATE(2255), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69938] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3321), 2, + sym_number, + sym_private_property_identifier, + STATE(2256), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [69970] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3323), 2, + sym_number, + sym_private_property_identifier, + STATE(2261), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70002] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3325), 2, + sym_number, + sym_private_property_identifier, + STATE(2194), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70034] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3327), 2, + sym_number, + sym_private_property_identifier, + STATE(2264), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70066] = 9, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3329), 2, + sym_number, + sym_private_property_identifier, + STATE(2224), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70098] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2485), 1, + ACTIONS(3259), 1, anon_sym_SLASH_GT, - STATE(1067), 1, + STATE(1728), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44475] = 10, - ACTIONS(2471), 1, + [70131] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(3331), 1, + anon_sym_GT, + ACTIONS(3333), 1, anon_sym_SLASH_GT, - STATE(1071), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44508] = 10, - ACTIONS(2471), 1, + [70164] = 8, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3337), 1, + anon_sym_COMMA, + ACTIONS(3339), 1, + anon_sym_RBRACE, + STATE(2022), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3335), 2, + anon_sym_default, + sym_identifier, + STATE(2041), 3, + sym__module_export_name, + sym_string, + aux_sym_non_reserved_keyword, + [70193] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3341), 2, + sym_number, + sym_private_property_identifier, + STATE(2278), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70222] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3343), 2, + sym_number, + sym_private_property_identifier, + STATE(2286), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70251] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(3345), 1, + anon_sym_GT, + ACTIONS(3347), 1, anon_sym_SLASH_GT, - STATE(1068), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44541] = 10, - ACTIONS(2471), 1, + [70284] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2485), 1, + ACTIONS(3349), 1, + anon_sym_GT, + ACTIONS(3351), 1, anon_sym_SLASH_GT, - STATE(1069), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44574] = 7, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2512), 1, - anon_sym_LT, - ACTIONS(2514), 1, - anon_sym_DQUOTE, - ACTIONS(2516), 1, - anon_sym_SQUOTE, - STATE(1039), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1192), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44600] = 9, - ACTIONS(2471), 1, + [70317] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(3353), 1, anon_sym_GT, - ACTIONS(2520), 1, + ACTIONS(3355), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44630] = 9, - ACTIONS(2471), 1, + [70350] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(3331), 1, anon_sym_GT, - ACTIONS(2522), 1, + ACTIONS(3357), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44660] = 7, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2512), 1, - anon_sym_LT, - ACTIONS(2514), 1, + [70383] = 10, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(2516), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - STATE(1039), 1, - sym_jsx_opening_element, + ACTIONS(3359), 1, + sym_identifier, + ACTIONS(3361), 1, + anon_sym_default, + ACTIONS(3363), 1, + anon_sym_COMMA, + ACTIONS(3365), 1, + anon_sym_RBRACE, + STATE(1992), 1, + aux_sym_non_reserved_keyword, + STATE(1994), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1193), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44686] = 9, - ACTIONS(2471), 1, + STATE(2399), 2, + sym__module_export_name, + sym_string, + [70416] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2483), 1, + ACTIONS(3261), 1, anon_sym_SLASH_GT, - STATE(1063), 1, + STATE(1735), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44716] = 9, - ACTIONS(2471), 1, + [70449] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2526), 1, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3257), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1746), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44746] = 9, - ACTIONS(2471), 1, + [70482] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(3345), 1, anon_sym_GT, - ACTIONS(2528), 1, + ACTIONS(3367), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44776] = 9, - ACTIONS(2471), 1, + [70515] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2485), 1, + ACTIONS(3349), 1, + anon_sym_GT, + ACTIONS(3369), 1, anon_sym_SLASH_GT, - STATE(1074), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44806] = 9, - ACTIONS(2471), 1, + [70548] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(3353), 1, anon_sym_GT, - ACTIONS(2532), 1, + ACTIONS(3371), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44836] = 9, - ACTIONS(2471), 1, + [70581] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(3331), 1, anon_sym_GT, - ACTIONS(2536), 1, + ACTIONS(3373), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44866] = 9, - ACTIONS(2471), 1, + [70614] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3375), 2, + sym_number, + sym_private_property_identifier, + STATE(2305), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70643] = 7, + ACTIONS(3377), 1, + anon_sym_LBRACE, + ACTIONS(3383), 1, + anon_sym_LT, + ACTIONS(3386), 1, + anon_sym_LT_SLASH, + STATE(1695), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3380), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1737), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [70670] = 9, + ACTIONS(3388), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3391), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3396), 1, sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2538), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + ACTIONS(3394), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44896] = 9, - ACTIONS(2471), 1, + [70701] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3399), 2, + sym_number, + sym_private_property_identifier, + STATE(2123), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70730] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3401), 2, + sym_number, + sym_private_property_identifier, + STATE(2291), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70759] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(3345), 1, anon_sym_GT, - ACTIONS(2540), 1, + ACTIONS(3403), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44926] = 9, - ACTIONS(2471), 1, + [70792] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3405), 2, + sym_number, + sym_private_property_identifier, + STATE(2233), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70821] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(3349), 1, + anon_sym_GT, + ACTIONS(3407), 1, anon_sym_SLASH_GT, - STATE(1073), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44956] = 9, - ACTIONS(2471), 1, + [70854] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3409), 2, + sym_number, + sym_private_property_identifier, + STATE(2246), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70883] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(3353), 1, anon_sym_GT, - ACTIONS(2542), 1, + ACTIONS(3411), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [44986] = 9, - ACTIONS(2471), 1, + [70916] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(3331), 1, anon_sym_GT, - ACTIONS(2544), 1, + ACTIONS(3413), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [45016] = 9, - ACTIONS(2471), 1, + [70949] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3415), 2, + sym_number, + sym_private_property_identifier, + STATE(2249), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [70978] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3417), 2, + sym_number, + sym_private_property_identifier, + STATE(2253), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [71007] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3419), 2, + sym_number, + sym_private_property_identifier, + STATE(2188), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [71036] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, + sym_identifier, + STATE(2408), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3421), 2, + sym_number, + sym_private_property_identifier, + STATE(2260), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [71065] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(3345), 1, anon_sym_GT, - ACTIONS(2546), 1, + ACTIONS(3423), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [45046] = 9, - ACTIONS(2471), 1, + [71098] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(3349), 1, anon_sym_GT, - ACTIONS(2548), 1, + ACTIONS(3425), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [45076] = 8, - ACTIONS(2550), 1, + [71131] = 8, + ACTIONS(1170), 1, + anon_sym_LBRACK, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3231), 1, sym_identifier, - ACTIONS(2553), 1, - anon_sym_LBRACE, - ACTIONS(2558), 1, - sym_jsx_identifier, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + STATE(2408), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2556), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45104] = 9, - ACTIONS(2471), 1, + ACTIONS(3427), 2, + sym_number, + sym_private_property_identifier, + STATE(2263), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [71160] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(3253), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(3353), 1, anon_sym_GT, - ACTIONS(2561), 1, + ACTIONS(3429), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1738), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [45134] = 9, - ACTIONS(2471), 1, + [71193] = 10, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(3251), 1, anon_sym_GT, - ACTIONS(2563), 1, + ACTIONS(3253), 1, + sym_jsx_identifier, + ACTIONS(3263), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1721), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1773), 1, + aux_sym_non_reserved_keyword, + STATE(1790), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1854), 2, sym_jsx_expression, sym_jsx_attribute, - [45164] = 9, - ACTIONS(2471), 1, + [71226] = 9, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3359), 1, sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2565), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3361), 1, + anon_sym_default, + ACTIONS(3431), 1, + anon_sym_RBRACE, + STATE(1992), 1, + aux_sym_non_reserved_keyword, + STATE(2081), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45194] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, + STATE(2399), 2, + sym__module_export_name, + sym_string, + [71256] = 7, + ACTIONS(3247), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, - anon_sym_GT, - ACTIONS(2567), 1, - anon_sym_SLASH_GT, - STATE(1070), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3435), 1, + anon_sym_DQUOTE, + ACTIONS(3437), 1, + anon_sym_SQUOTE, + STATE(1701), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1883), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [45224] = 9, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, - anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1062), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + sym_jsx_self_closing_element, + sym__jsx_string, + [71282] = 7, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3439), 1, + anon_sym_RBRACE, + STATE(2195), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45254] = 8, - ACTIONS(854), 1, + ACTIONS(3335), 2, + anon_sym_default, + sym_identifier, + STATE(2041), 3, + sym__module_export_name, + sym_string, + aux_sym_non_reserved_keyword, + [71308] = 7, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, + ACTIONS(3441), 1, anon_sym_RBRACE, - STATE(1295), 1, + STATE(2195), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, + ACTIONS(3335), 2, + anon_sym_default, + sym_identifier, + STATE(2041), 3, sym__module_export_name, sym_string, - [45281] = 8, - ACTIONS(854), 1, + aux_sym_non_reserved_keyword, + [71334] = 9, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(2575), 1, + ACTIONS(3359), 1, sym_identifier, - ACTIONS(2577), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, + ACTIONS(3361), 1, + anon_sym_default, + ACTIONS(3443), 1, anon_sym_RBRACE, - STATE(1299), 1, + STATE(1992), 1, + aux_sym_non_reserved_keyword, + STATE(2081), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, + STATE(2399), 2, sym__module_export_name, sym_string, - [45308] = 4, - ACTIONS(2581), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_sequence_expression_repeat1, + [71364] = 7, + ACTIONS(3247), 1, + anon_sym_LBRACE, + ACTIONS(3433), 1, + anon_sym_LT, + ACTIONS(3435), 1, + anon_sym_DQUOTE, + ACTIONS(3437), 1, + anon_sym_SQUOTE, + STATE(1701), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45326] = 6, - ACTIONS(897), 1, + STATE(1882), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [71390] = 6, + ACTIONS(1208), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - ACTIONS(2584), 1, + ACTIONS(3445), 1, sym_identifier, - STATE(1308), 1, + STATE(1929), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, + STATE(1841), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45348] = 6, - ACTIONS(897), 1, + aux_sym_non_reserved_keyword, + [71413] = 6, + ACTIONS(1208), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(3447), 1, sym_identifier, - STATE(1255), 1, + STATE(1929), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1092), 3, + STATE(1777), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45370] = 6, - ACTIONS(897), 1, + aux_sym_non_reserved_keyword, + [71436] = 6, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + STATE(2195), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3335), 2, + anon_sym_default, + sym_identifier, + STATE(2041), 3, + sym__module_export_name, + sym_string, + aux_sym_non_reserved_keyword, + [71459] = 8, + ACTIONS(1172), 1, + anon_sym_DQUOTE, + ACTIONS(1174), 1, + anon_sym_SQUOTE, + ACTIONS(3359), 1, + sym_identifier, + ACTIONS(3361), 1, + anon_sym_default, + STATE(1992), 1, + aux_sym_non_reserved_keyword, + STATE(2081), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2399), 2, + sym__module_export_name, + sym_string, + [71486] = 6, + ACTIONS(1208), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1210), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(3445), 1, sym_identifier, - STATE(1260), 1, + STATE(1970), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, + STATE(1841), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45392] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + aux_sym_non_reserved_keyword, + [71509] = 8, + ACTIONS(95), 1, + anon_sym_LPAREN, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3449), 1, + sym_identifier, + STATE(1058), 1, + sym_class_body, + STATE(1888), 1, + aux_sym_non_reserved_keyword, + STATE(2283), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45416] = 7, - ACTIONS(101), 1, + [71535] = 7, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(2107), 1, + ACTIONS(1308), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(3453), 1, anon_sym_EQ, - STATE(1311), 1, + STATE(2015), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(2021), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(3451), 2, anon_sym_LPAREN, anon_sym_COLON, - [45440] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + [71559] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45464] = 7, - ACTIONS(101), 1, + ACTIONS(3455), 7, anon_sym_COMMA, - ACTIONS(800), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_RBRACK, + [71573] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45488] = 4, - ACTIONS(1735), 1, + ACTIONS(3457), 7, anon_sym_COMMA, - STATE(1078), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2590), 5, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, anon_sym_RBRACK, - [45506] = 7, - ACTIONS(854), 1, + [71587] = 5, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2592), 1, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, + ACTIONS(3459), 2, + anon_sym_default, + sym_identifier, + STATE(2363), 3, sym__module_export_name, sym_string, - [45530] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2594), 7, + aux_sym_non_reserved_keyword, + [71607] = 7, + ACTIONS(121), 1, anon_sym_COMMA, + ACTIONS(1236), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3453), 1, anon_sym_EQ, - anon_sym_RBRACK, - [45544] = 2, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, + STATE(2028), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3451), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [71631] = 5, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3461), 1, + sym_identifier, + ACTIONS(3465), 1, anon_sym_EQ, - anon_sym_RBRACK, - [45558] = 7, - ACTIONS(101), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3463), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [71651] = 7, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(792), 1, + ACTIONS(1270), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(3453), 1, anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, + STATE(2015), 1, aux_sym_object_pattern_repeat1, + STATE(2028), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(3451), 2, anon_sym_LPAREN, anon_sym_COLON, - [45582] = 7, - ACTIONS(854), 1, + [71675] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3467), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [71689] = 5, + ACTIONS(1172), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1174), 1, anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, + ACTIONS(3469), 2, + anon_sym_default, + sym_identifier, + STATE(2198), 3, sym__module_export_name, sym_string, - [45606] = 5, - ACTIONS(2604), 1, + aux_sym_non_reserved_keyword, + [71709] = 5, + ACTIONS(3475), 1, anon_sym_EQ, - STATE(1194), 1, + STATE(1835), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, + ACTIONS(3473), 2, anon_sym_in, anon_sym_of, - ACTIONS(2600), 3, + ACTIONS(3471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [45626] = 2, + [71729] = 7, + ACTIONS(121), 1, + anon_sym_COMMA, + ACTIONS(3453), 1, + anon_sym_EQ, + ACTIONS(3477), 1, + anon_sym_RBRACE, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, + STATE(2028), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3451), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [71753] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 7, + ACTIONS(3479), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -74690,108 +123468,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45640] = 5, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, + [71767] = 6, + ACTIONS(3481), 1, anon_sym_EQ, + ACTIONS(3483), 1, + sym__automatic_semicolon, + STATE(1963), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2610), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45660] = 6, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1255), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45682] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2614), 1, + ACTIONS(3471), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3473), 2, + anon_sym_in, + anon_sym_of, + [71789] = 7, + ACTIONS(121), 1, + anon_sym_COMMA, + ACTIONS(3453), 1, + anon_sym_EQ, + ACTIONS(3486), 1, anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, + STATE(2028), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [45706] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, + ACTIONS(3451), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [71813] = 5, + ACTIONS(2695), 1, + anon_sym_LBRACE, + ACTIONS(3488), 1, sym_identifier, - ACTIONS(2616), 1, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, + ACTIONS(3490), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45730] = 6, - ACTIONS(897), 1, + STATE(2449), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + aux_sym_non_reserved_keyword, + [71833] = 5, + ACTIONS(2695), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(3490), 1, anon_sym_LBRACK, - ACTIONS(2584), 1, + ACTIONS(3492), 1, sym_identifier, - STATE(1260), 1, - sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, + STATE(1905), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45752] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2620), 1, - sym__automatic_semicolon, - STATE(1318), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2600), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [45774] = 2, + aux_sym_non_reserved_keyword, + [71853] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 7, + ACTIONS(3494), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -74799,7003 +123543,7939 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45788] = 7, - ACTIONS(101), 1, + [71867] = 7, + ACTIONS(121), 1, anon_sym_COMMA, - ACTIONS(2111), 1, + ACTIONS(3453), 1, anon_sym_EQ, - ACTIONS(2113), 1, + ACTIONS(3496), 1, anon_sym_RBRACE, - STATE(1311), 1, + STATE(2015), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(2028), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(3451), 2, anon_sym_LPAREN, anon_sym_COLON, - [45812] = 2, + [71891] = 7, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3498), 1, + sym_identifier, + ACTIONS(3500), 1, + anon_sym_LBRACE, + STATE(949), 1, + sym_class_body, + STATE(1935), 1, + aux_sym_non_reserved_keyword, + STATE(2107), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 7, + [71914] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2021), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - anon_sym_RBRACK, - [45826] = 5, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2627), 1, - sym_identifier, + [71927] = 5, + ACTIONS(3504), 1, + anon_sym_BQUOTE, + ACTIONS(3506), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1313), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45845] = 5, - ACTIONS(2629), 1, - anon_sym_default, - ACTIONS(2631), 1, - anon_sym_RBRACE, - ACTIONS(2633), 1, - anon_sym_case, + ACTIONS(3502), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1792), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [71946] = 7, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3508), 1, + sym_identifier, + STATE(1031), 1, + sym_class_body, + STATE(1887), 1, + aux_sym_non_reserved_keyword, + STATE(2177), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1108), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45864] = 3, - ACTIONS(2635), 1, + [71969] = 4, + ACTIONS(3510), 1, sym_identifier, + ACTIONS(3514), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2637), 5, + ACTIONS(3512), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - anon_sym_DOT, anon_sym_SLASH_GT, - [45879] = 5, - ACTIONS(2641), 1, - anon_sym_BQUOTE, - ACTIONS(2643), 1, + [71986] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2017), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [71999] = 5, + ACTIONS(3506), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3518), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 2, + ACTIONS(3516), 2, sym__template_chars, sym_escape_sequence, - STATE(1123), 2, + STATE(1811), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [45898] = 6, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, + [72018] = 7, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(3520), 1, sym_identifier, - STATE(1491), 1, - sym_import_specifier, + ACTIONS(3522), 1, + anon_sym_LBRACK, + ACTIONS(3524), 1, + sym_private_property_identifier, + STATE(702), 1, + aux_sym_non_reserved_keyword, + STATE(979), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45919] = 5, - ACTIONS(2629), 1, - anon_sym_default, - ACTIONS(2633), 1, - anon_sym_case, - ACTIONS(2645), 1, - anon_sym_RBRACE, + [72041] = 7, + ACTIONS(3526), 1, + sym_identifier, + ACTIONS(3528), 1, + anon_sym_GT, + ACTIONS(3530), 1, + sym_jsx_identifier, + STATE(2055), 1, + aux_sym_non_reserved_keyword, + STATE(2206), 1, + sym_nested_identifier, + STATE(2332), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1131), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45938] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1451), 1, - sym__initializer, - STATE(1601), 1, - sym_formal_parameters, + [72064] = 7, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3532), 1, + sym_identifier, + STATE(1058), 1, + sym_class_body, + STATE(1921), 1, + aux_sym_non_reserved_keyword, + STATE(2283), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45959] = 2, + [72087] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1788), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [72100] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 6, + ACTIONS(2019), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [45972] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1447), 1, - sym__initializer, - STATE(1586), 1, - sym_formal_parameters, + [72113] = 5, + ACTIONS(3534), 1, + anon_sym_default, + ACTIONS(3536), 1, + anon_sym_RBRACE, + ACTIONS(3538), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45993] = 2, + STATE(1799), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [72132] = 5, + ACTIONS(3540), 1, + anon_sym_default, + ACTIONS(3543), 1, + anon_sym_RBRACE, + ACTIONS(3545), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [46006] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2653), 1, + STATE(1799), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [72151] = 7, + ACTIONS(3548), 1, sym_identifier, - ACTIONS(2655), 1, - anon_sym_LBRACK, + ACTIONS(3550), 1, + anon_sym_GT, + ACTIONS(3552), 1, + sym_jsx_identifier, + STATE(1993), 1, + aux_sym_non_reserved_keyword, + STATE(2308), 1, + sym_nested_identifier, + STATE(2466), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1251), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46025] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, + [72174] = 6, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1448), 1, - sym__initializer, - STATE(1587), 1, + ACTIONS(3556), 1, + anon_sym_EQ, + STATE(2144), 1, sym_formal_parameters, + STATE(2151), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2657), 2, + ACTIONS(3554), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46046] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2661), 1, - anon_sym_BQUOTE, + [72195] = 5, + ACTIONS(3534), 1, + anon_sym_default, + ACTIONS(3538), 1, + anon_sym_case, + ACTIONS(3558), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1106), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46065] = 2, + STATE(1798), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [72214] = 7, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3449), 1, + sym_identifier, + STATE(1058), 1, + sym_class_body, + STATE(1888), 1, + aux_sym_non_reserved_keyword, + STATE(2283), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46078] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2655), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, + [72237] = 7, + ACTIONS(3560), 1, sym_identifier, + ACTIONS(3562), 1, + anon_sym_GT, + ACTIONS(3564), 1, + sym_jsx_identifier, + STATE(1681), 1, + aux_sym_non_reserved_keyword, + STATE(1705), 1, + sym_nested_identifier, + STATE(1755), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1634), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46097] = 2, + [72260] = 7, + ACTIONS(3566), 1, + sym_identifier, + ACTIONS(3568), 1, + anon_sym_GT, + ACTIONS(3570), 1, + sym_jsx_identifier, + STATE(2012), 1, + aux_sym_non_reserved_keyword, + STATE(2118), 1, + sym_nested_identifier, + STATE(2382), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [72283] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + anon_sym_EQ, + STATE(2130), 1, + sym__initializer, + STATE(2281), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 6, + ACTIONS(3572), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46110] = 4, - ACTIONS(2665), 1, + [72304] = 3, + ACTIONS(3574), 1, sym_identifier, - ACTIONS(2669), 1, - anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2667), 4, + ACTIONS(3576), 5, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT, sym_jsx_identifier, - anon_sym_SLASH_GT, - [46127] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1538), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [46140] = 2, + anon_sym_SLASH_GT, + [72319] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 6, + ACTIONS(3455), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [46153] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, - anon_sym_BQUOTE, + [72332] = 7, + ACTIONS(1214), 1, + sym_identifier, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + STATE(1031), 1, + sym_class_body, + STATE(1901), 1, + aux_sym_non_reserved_keyword, + STATE(2177), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1123), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46172] = 5, - ACTIONS(2676), 1, + [72355] = 3, + ACTIONS(3578), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3580), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [72370] = 5, + ACTIONS(3585), 1, anon_sym_BQUOTE, - ACTIONS(2678), 1, + ACTIONS(3587), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2673), 2, + ACTIONS(3582), 2, sym__template_chars, sym_escape_sequence, - STATE(1123), 2, + STATE(1811), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46191] = 3, - ACTIONS(2681), 1, - sym_identifier, + [72389] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, + anon_sym_EQ, + STATE(2217), 1, + sym_formal_parameters, + STATE(2304), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2683), 5, - anon_sym_LBRACE, + ACTIONS(3590), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72410] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3556), 1, anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46206] = 6, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - STATE(1468), 1, - sym_export_specifier, + STATE(2221), 1, + sym_formal_parameters, + STATE(2307), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [46227] = 2, + ACTIONS(3592), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [72431] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 6, + ACTIONS(3467), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [46240] = 2, + [72444] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 6, + ACTIONS(3457), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [46253] = 2, + [72457] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 6, + ACTIONS(3479), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [46266] = 2, + [72470] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 6, + ACTIONS(3494), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - [46279] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2647), 1, + [72483] = 7, + ACTIONS(95), 1, + anon_sym_EQ_GT, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1455), 1, - sym__initializer, - STATE(1551), 1, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3596), 1, + anon_sym_STAR, + STATE(2076), 1, + aux_sym_non_reserved_keyword, + STATE(2077), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2685), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46300] = 5, - ACTIONS(2687), 1, - anon_sym_default, - ACTIONS(2690), 1, - anon_sym_RBRACE, - ACTIONS(2692), 1, - anon_sym_case, + [72506] = 7, + ACTIONS(3562), 1, + anon_sym_GT, + ACTIONS(3598), 1, + sym_identifier, + ACTIONS(3600), 1, + sym_jsx_identifier, + STATE(1678), 1, + aux_sym_non_reserved_keyword, + STATE(1690), 1, + sym_nested_identifier, + STATE(1731), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1131), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [46319] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2697), 1, - anon_sym_BQUOTE, + [72529] = 7, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3602), 1, + sym_identifier, + STATE(1031), 1, + sym_class_body, + STATE(1954), 1, + aux_sym_non_reserved_keyword, + STATE(2177), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2695), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1122), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46338] = 5, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2699), 1, + [72552] = 7, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3604), 1, sym_identifier, + STATE(1058), 1, + sym_class_body, + STATE(1906), 1, + aux_sym_non_reserved_keyword, + STATE(2283), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1654), 2, - sym__module_export_name, - sym_string, - [46356] = 3, - ACTIONS(1460), 1, - anon_sym_LT, + [72575] = 7, + ACTIONS(1218), 1, + anon_sym_extends, + ACTIONS(3500), 1, + anon_sym_LBRACE, + ACTIONS(3606), 1, + sym_identifier, + STATE(983), 1, + sym_class_body, + STATE(1912), 1, + aux_sym_non_reserved_keyword, + STATE(2213), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1462), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46370] = 3, - ACTIONS(2701), 1, - anon_sym_EQ, + [72598] = 7, + ACTIONS(3562), 1, + anon_sym_GT, + ACTIONS(3608), 1, + sym_identifier, + ACTIONS(3610), 1, + sym_jsx_identifier, + STATE(1679), 1, + aux_sym_non_reserved_keyword, + STATE(1697), 1, + sym_nested_identifier, + STATE(1720), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46384] = 3, - ACTIONS(2706), 1, - anon_sym_LT, + [72621] = 7, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(3612), 1, + sym_identifier, + ACTIONS(3614), 1, + anon_sym_LBRACK, + ACTIONS(3616), 1, + sym_private_property_identifier, + STATE(807), 1, + aux_sym_non_reserved_keyword, + STATE(1105), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46398] = 6, - ACTIONS(2708), 1, + [72644] = 7, + ACTIONS(3562), 1, + anon_sym_GT, + ACTIONS(3618), 1, + sym_identifier, + ACTIONS(3620), 1, + sym_jsx_identifier, + STATE(1680), 1, + aux_sym_non_reserved_keyword, + STATE(1703), 1, + sym_nested_identifier, + STATE(1730), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [72667] = 7, + ACTIONS(3622), 1, sym_identifier, - ACTIONS(2710), 1, + ACTIONS(3624), 1, anon_sym_GT, - ACTIONS(2712), 1, + ACTIONS(3626), 1, sym_jsx_identifier, - STATE(1044), 1, + STATE(2059), 1, + aux_sym_non_reserved_keyword, + STATE(2225), 1, sym_nested_identifier, - STATE(1075), 1, + STATE(2364), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46418] = 2, + [72690] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1808), 6, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [46430] = 6, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(2716), 1, - sym_jsx_identifier, - STATE(1051), 1, - sym_nested_identifier, - STATE(1065), 1, - sym_jsx_namespace_name, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [72703] = 5, + ACTIONS(3506), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3628), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3516), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1811), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [72722] = 5, + ACTIONS(3506), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3632), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46450] = 3, - ACTIONS(2718), 1, + ACTIONS(3630), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1828), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [72741] = 3, + ACTIONS(1885), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2720), 4, + ACTIONS(1887), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46464] = 6, - ACTIONS(2722), 1, + [72755] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1808), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [72767] = 3, + ACTIONS(3634), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [72781] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3637), 1, sym_identifier, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2726), 1, - anon_sym_extends, - STATE(526), 1, - sym_class_body, - STATE(1533), 1, - sym_class_heritage, + ACTIONS(3639), 1, + anon_sym_STAR, + STATE(2108), 1, + sym_formal_parameters, + STATE(2148), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46484] = 6, - ACTIONS(91), 1, + [72801] = 6, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(2728), 1, + ACTIONS(3641), 1, anon_sym_export, - ACTIONS(2730), 1, + ACTIONS(3643), 1, anon_sym_class, - STATE(944), 1, + STATE(1592), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1661), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46504] = 3, - ACTIONS(2732), 1, - sym_identifier, + [72821] = 4, + ACTIONS(3647), 1, + anon_sym_in, + ACTIONS(3649), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2734), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46518] = 6, - ACTIONS(2736), 1, - sym_identifier, - ACTIONS(2738), 1, - anon_sym_GT, - ACTIONS(2740), 1, - sym_jsx_identifier, - STATE(1417), 1, - sym_nested_identifier, - STATE(1721), 1, - sym_jsx_namespace_name, + ACTIONS(3645), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [72837] = 3, + ACTIONS(3653), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46538] = 6, - ACTIONS(2742), 1, + ACTIONS(3651), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [72851] = 3, + ACTIONS(1822), 1, sym_identifier, - ACTIONS(2744), 1, - anon_sym_GT, - ACTIONS(2746), 1, - sym_jsx_identifier, - STATE(1536), 1, - sym_nested_identifier, - STATE(1706), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46558] = 3, - ACTIONS(1484), 1, + ACTIONS(1824), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [72865] = 3, + ACTIONS(3657), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(3655), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46572] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + [72879] = 6, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3453), 1, + anon_sym_EQ, + ACTIONS(3659), 1, + anon_sym_RBRACE, + STATE(2029), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, + [72899] = 3, + ACTIONS(3661), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3663), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46586] = 6, - ACTIONS(2710), 1, anon_sym_GT, - ACTIONS(2748), 1, - sym_identifier, - ACTIONS(2750), 1, sym_jsx_identifier, - STATE(1046), 1, - sym_nested_identifier, - STATE(1057), 1, - sym_jsx_namespace_name, + anon_sym_SLASH_GT, + [72913] = 4, + ACTIONS(3481), 1, + anon_sym_EQ, + STATE(1963), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46606] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + ACTIONS(3471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [72929] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3665), 1, + sym_identifier, + ACTIONS(3667), 1, + anon_sym_STAR, + STATE(2097), 1, + aux_sym_non_reserved_keyword, + STATE(2176), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46620] = 3, - ACTIONS(1484), 1, + [72949] = 3, + ACTIONS(3671), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(3669), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46634] = 6, - ACTIONS(2087), 1, + [72963] = 5, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2752), 1, + ACTIONS(3673), 1, anon_sym_RBRACE, - STATE(1352), 1, - aux_sym_object_pattern_repeat1, + STATE(1986), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46654] = 3, - ACTIONS(2756), 1, + ACTIONS(3451), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [72981] = 3, + ACTIONS(1822), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, + ACTIONS(1824), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46668] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2758), 1, - sym_identifier, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + [72995] = 3, + ACTIONS(3675), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46688] = 3, - ACTIONS(2756), 1, + ACTIONS(1590), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [73009] = 3, + ACTIONS(3671), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, + ACTIONS(3669), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46702] = 3, - ACTIONS(1516), 1, + [73023] = 3, + ACTIONS(3671), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 4, + ACTIONS(3669), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46716] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2762), 1, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46736] = 3, - ACTIONS(2756), 1, + [73037] = 3, + ACTIONS(3671), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, + ACTIONS(3669), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46750] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2764), 1, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46770] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1309), 4, + [73051] = 6, + ACTIONS(2951), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46784] = 4, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, + ACTIONS(3451), 1, anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, + ACTIONS(3453), 1, + anon_sym_EQ, + ACTIONS(3677), 1, anon_sym_RBRACE, - [46800] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2768), 1, - sym_identifier, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + STATE(2015), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46820] = 3, - ACTIONS(1396), 1, + [73071] = 3, + ACTIONS(3679), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 4, + ACTIONS(3681), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46834] = 3, - ACTIONS(2706), 1, + [73085] = 3, + ACTIONS(3683), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 4, + ACTIONS(3685), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46848] = 6, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2770), 1, - sym_identifier, - ACTIONS(2772), 1, - sym_jsx_identifier, - STATE(1049), 1, - sym_nested_identifier, - STATE(1060), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46868] = 3, - ACTIONS(2776), 1, - anon_sym_LT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2774), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46882] = 6, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2778), 1, - anon_sym_export, - ACTIONS(2780), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46902] = 2, + [73099] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1600), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_EQ, - [46914] = 3, - ACTIONS(2782), 1, + anon_sym_RBRACK, + [73111] = 3, + ACTIONS(3687), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2784), 4, + ACTIONS(3689), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46928] = 6, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2786), 1, + [73125] = 3, + ACTIONS(1909), 1, sym_identifier, - STATE(549), 1, - sym_class_body, - STATE(1584), 1, - sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46948] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, + ACTIONS(1911), 4, anon_sym_LBRACE, - ACTIONS(2788), 1, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46968] = 5, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2790), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1479), 2, - sym__module_export_name, - sym_string, - [46986] = 3, - ACTIONS(1396), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [73139] = 3, + ACTIONS(3679), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 4, + ACTIONS(3681), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47000] = 3, - ACTIONS(1425), 1, - sym_identifier, + [73153] = 4, + ACTIONS(3453), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47014] = 6, - ACTIONS(1333), 1, + ACTIONS(3451), 2, anon_sym_LPAREN, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - sym_private_property_identifier, - STATE(545), 1, - sym_arguments, + anon_sym_COLON, + ACTIONS(3691), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [73169] = 3, + ACTIONS(1881), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47034] = 3, - ACTIONS(2798), 1, - anon_sym_EQ, + ACTIONS(1883), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [73183] = 3, + ACTIONS(1885), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47048] = 5, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(2133), 1, - anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + ACTIONS(1887), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [73197] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(1788), 5, + sym__automatic_semicolon, + anon_sym_with, anon_sym_LPAREN, - anon_sym_COLON, - [47066] = 3, - ACTIONS(1456), 1, + anon_sym_SEMI, + anon_sym_EQ, + [73209] = 3, + ACTIONS(1909), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1458), 4, + ACTIONS(1911), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47080] = 3, - ACTIONS(1460), 1, + [73223] = 3, + ACTIONS(1909), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1462), 4, + ACTIONS(1911), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47094] = 3, - ACTIONS(1425), 1, + [73237] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3594), 1, + sym_identifier, + ACTIONS(3596), 1, + anon_sym_STAR, + STATE(2076), 1, + aux_sym_non_reserved_keyword, + STATE(2077), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73257] = 3, + ACTIONS(1909), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 4, + ACTIONS(1911), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47108] = 3, - ACTIONS(1484), 1, - sym_identifier, + [73271] = 3, + ACTIONS(3683), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(3685), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47122] = 3, - ACTIONS(1484), 1, - sym_identifier, + sym_html_character_reference, + anon_sym_LT_SLASH, + [73285] = 3, + ACTIONS(1909), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1911), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47136] = 3, - ACTIONS(1484), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [73299] = 3, + ACTIONS(1909), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1911), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47150] = 3, - ACTIONS(1484), 1, - sym_identifier, + [73313] = 3, + ACTIONS(1909), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1911), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47164] = 3, - ACTIONS(1516), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [73327] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3694), 1, sym_identifier, + ACTIONS(3696), 1, + anon_sym_STAR, + STATE(2088), 1, + sym_formal_parameters, + STATE(2228), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47178] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + [73347] = 6, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(3698), 1, + anon_sym_export, + ACTIONS(3700), 1, + anon_sym_class, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73367] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3702), 1, sym_identifier, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, + ACTIONS(3704), 1, + anon_sym_STAR, + STATE(2077), 1, + sym_formal_parameters, + STATE(2242), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47198] = 3, - ACTIONS(2805), 1, + [73387] = 3, + ACTIONS(1909), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, + ACTIONS(1911), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47212] = 6, - ACTIONS(2807), 1, + [73401] = 3, + ACTIONS(1770), 1, sym_identifier, - ACTIONS(2809), 1, - anon_sym_GT, - ACTIONS(2811), 1, - sym_jsx_identifier, - STATE(1582), 1, - sym_nested_identifier, - STATE(1679), 1, - sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47232] = 6, - ACTIONS(2813), 1, - sym_identifier, - ACTIONS(2815), 1, + ACTIONS(1772), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2817), 1, sym_jsx_identifier, - STATE(1392), 1, - sym_nested_identifier, - STATE(1624), 1, - sym_jsx_namespace_name, + anon_sym_SLASH_GT, + [73415] = 3, + ACTIONS(1750), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47252] = 3, - ACTIONS(2756), 1, + ACTIONS(1752), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [73429] = 3, + ACTIONS(1770), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, + ACTIONS(1772), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, - anon_sym_LT_SLASH, - [47266] = 6, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2819), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47286] = 4, - ACTIONS(2618), 1, - anon_sym_EQ, - STATE(1318), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2600), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [47302] = 3, - ACTIONS(2821), 1, + anon_sym_LT_SLASH, + [73443] = 3, + ACTIONS(1881), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2823), 4, + ACTIONS(1883), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47316] = 3, - ACTIONS(2825), 1, + [73457] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3706), 1, + sym_identifier, + ACTIONS(3708), 1, + anon_sym_STAR, + STATE(2088), 1, + sym_formal_parameters, + STATE(2275), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73477] = 3, + ACTIONS(3710), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 4, + ACTIONS(3712), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47330] = 4, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 1, - anon_sym_of, + [73491] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3714), 1, + sym_identifier, + ACTIONS(3716), 1, + anon_sym_STAR, + STATE(2088), 1, + sym_formal_parameters, + STATE(2218), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [47346] = 3, - ACTIONS(1456), 1, - anon_sym_LT, + [73511] = 6, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(3718), 1, + anon_sym_export, + ACTIONS(3720), 1, + anon_sym_class, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1458), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47360] = 2, + [73531] = 6, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3722), 1, + sym_identifier, + ACTIONS(3724), 1, + anon_sym_STAR, + STATE(2077), 1, + sym_formal_parameters, + STATE(2229), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [47372] = 6, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(2835), 1, + [73551] = 3, + ACTIONS(3726), 1, sym_identifier, - ACTIONS(2837), 1, - anon_sym_LBRACK, - ACTIONS(2839), 1, - sym_private_property_identifier, - STATE(723), 1, - sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47392] = 3, - ACTIONS(2805), 1, + ACTIONS(3728), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [73565] = 3, + ACTIONS(3730), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, + ACTIONS(3732), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47406] = 3, - ACTIONS(2843), 1, + [73579] = 3, + ACTIONS(1750), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2841), 4, + ACTIONS(1752), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2845), 1, - anon_sym_SQUOTE, - STATE(1236), 1, - aux_sym_string_repeat2, - ACTIONS(2847), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47437] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2849), 1, - sym_identifier, - ACTIONS(2851), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47454] = 4, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47469] = 5, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + [73593] = 5, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(3734), 1, + anon_sym_class, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47486] = 5, - ACTIONS(91), 1, + [73610] = 5, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(2859), 1, + ACTIONS(3736), 1, anon_sym_class, - STATE(944), 1, + STATE(1592), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1661), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2861), 1, - sym_html_character_reference, - ACTIONS(2863), 1, - anon_sym_DQUOTE, - ACTIONS(2865), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1213), 1, - aux_sym__jsx_string_repeat1, - [47522] = 5, - ACTIONS(2867), 1, + [73627] = 5, + ACTIONS(1216), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3738), 1, anon_sym_extends, - STATE(341), 1, + STATE(1102), 1, sym_class_body, - STATE(1572), 1, + STATE(2227), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47539] = 5, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47556] = 5, - ACTIONS(2760), 1, + [73644] = 5, + ACTIONS(1216), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3738), 1, anon_sym_extends, - STATE(69), 1, + STATE(123), 1, sym_class_body, - STATE(1427), 1, + STATE(2192), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47573] = 6, + [73661] = 5, + ACTIONS(1720), 1, + anon_sym_LPAREN, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(3740), 1, + sym_optional_chain, + STATE(955), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73678] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2863), 1, + ACTIONS(3742), 1, anon_sym_SQUOTE, - ACTIONS(2873), 1, - sym_html_character_reference, - ACTIONS(2875), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1218), 1, - aux_sym__jsx_string_repeat2, - [47592] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(646), 1, - sym_class_body, - STATE(1597), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47609] = 4, - ACTIONS(1717), 1, + STATE(1939), 1, + aux_sym_string_repeat2, + ACTIONS(3744), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [73695] = 4, + ACTIONS(3746), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + STATE(1913), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 2, + ACTIONS(3748), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47624] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2877), 1, + [73710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3750), 1, + anon_sym_DQUOTE, + STATE(1937), 1, + aux_sym_string_repeat1, + ACTIONS(3752), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [73727] = 4, + ACTIONS(3754), 1, sym_identifier, - ACTIONS(2879), 1, - anon_sym_STAR, - STATE(1537), 1, - sym_formal_parameters, + STATE(2119), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47641] = 6, + ACTIONS(1426), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [73742] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2881), 1, - sym_html_character_reference, - ACTIONS(2883), 1, + ACTIONS(3756), 1, anon_sym_DQUOTE, - ACTIONS(2885), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1263), 1, - aux_sym__jsx_string_repeat1, - [47660] = 5, + STATE(1917), 1, + aux_sym_string_repeat1, + ACTIONS(3758), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [73759] = 5, + ACTIONS(3760), 1, + anon_sym_COMMA, + ACTIONS(3762), 1, + anon_sym_RPAREN, + ACTIONS(3764), 1, + anon_sym_EQ, + STATE(2042), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73776] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2887), 1, + ACTIONS(3766), 1, anon_sym_DQUOTE, - STATE(1244), 1, + STATE(1908), 1, aux_sym_string_repeat1, - ACTIONS(2889), 2, + ACTIONS(3768), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47677] = 2, + [73793] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(3451), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_EQ, - [47688] = 2, + [73804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3766), 1, + anon_sym_SQUOTE, + STATE(1909), 1, + aux_sym_string_repeat2, + ACTIONS(3770), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [73821] = 5, + ACTIONS(3738), 1, + anon_sym_extends, + ACTIONS(3772), 1, + anon_sym_LBRACE, + STATE(697), 1, + sym_class_body, + STATE(2143), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47699] = 5, - ACTIONS(2760), 1, + [73838] = 5, + ACTIONS(3774), 1, + anon_sym_with, + ACTIONS(3776), 1, + anon_sym_SEMI, + ACTIONS(3778), 1, + sym__automatic_semicolon, + STATE(2271), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73855] = 5, + ACTIONS(1216), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3738), 1, anon_sym_extends, - STATE(649), 1, + STATE(129), 1, sym_class_body, - STATE(1611), 1, + STATE(2313), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47716] = 6, - ACTIONS(3), 1, + [73872] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(3780), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [73883] = 5, + ACTIONS(1921), 1, + anon_sym_LPAREN, + ACTIONS(1925), 1, + anon_sym_DOT, + ACTIONS(3782), 1, + sym_optional_chain, + STATE(1060), 1, + sym_arguments, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2883), 1, - anon_sym_SQUOTE, - ACTIONS(2891), 1, - sym_html_character_reference, - ACTIONS(2893), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1264), 1, - aux_sym__jsx_string_repeat2, - [47735] = 3, - ACTIONS(2895), 1, + sym_comment, + [73900] = 5, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3784), 1, + sym_identifier, + STATE(2112), 1, + aux_sym_non_reserved_keyword, + STATE(2240), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [73917] = 4, + ACTIONS(3786), 1, anon_sym_EQ, + STATE(2093), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [47748] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2897), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(3473), 2, + anon_sym_in, + anon_sym_of, + [73932] = 5, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(3738), 1, + anon_sym_extends, + STATE(1071), 1, + sym_class_body, + STATE(2273), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47765] = 4, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_repeat1, + [73949] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 2, + ACTIONS(2019), 4, anon_sym_RPAREN, - anon_sym_RBRACK, - [47780] = 5, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [73960] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3788), 1, + anon_sym_DQUOTE, + STATE(1937), 1, + aux_sym_string_repeat1, + ACTIONS(3752), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [73977] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2887), 1, + ACTIONS(3788), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1939), 1, aux_sym_string_repeat2, - ACTIONS(2902), 2, + ACTIONS(3744), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47797] = 4, - ACTIONS(2904), 1, - anon_sym_with, - STATE(1401), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2906), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47812] = 5, + [73994] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2908), 1, + ACTIONS(3790), 1, anon_sym_SQUOTE, - STATE(1222), 1, + STATE(1946), 1, aux_sym_string_repeat2, - ACTIONS(2910), 2, + ACTIONS(3792), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47829] = 5, + [74011] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2912), 1, + ACTIONS(3750), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1939), 1, aux_sym_string_repeat2, - ACTIONS(2902), 2, + ACTIONS(3744), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47846] = 5, + [74028] = 5, + ACTIONS(3500), 1, + anon_sym_LBRACE, + ACTIONS(3738), 1, + anon_sym_extends, + STATE(959), 1, + sym_class_body, + STATE(2292), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74045] = 4, + ACTIONS(3746), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3794), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74060] = 4, + ACTIONS(3796), 1, + sym_identifier, + STATE(1642), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1587), 2, + sym_decorator_member_expression, + aux_sym_non_reserved_keyword, + [74075] = 4, + ACTIONS(3798), 1, + anon_sym_COMMA, + STATE(1915), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74090] = 5, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3801), 1, + sym_identifier, + STATE(2106), 1, + sym_formal_parameters, + STATE(2315), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74107] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2914), 1, + ACTIONS(3742), 1, anon_sym_DQUOTE, - STATE(1249), 1, + STATE(1937), 1, aux_sym_string_repeat1, - ACTIONS(2916), 2, + ACTIONS(3752), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47863] = 5, + [74124] = 5, + ACTIONS(3520), 1, + sym_identifier, + ACTIONS(3522), 1, + anon_sym_LBRACK, + ACTIONS(3524), 1, + sym_private_property_identifier, + STATE(702), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74141] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2914), 1, - anon_sym_SQUOTE, - STATE(1250), 1, - aux_sym_string_repeat2, - ACTIONS(2918), 2, - sym_unescaped_single_string_fragment, + ACTIONS(3790), 1, + anon_sym_DQUOTE, + STATE(1938), 1, + aux_sym_string_repeat1, + ACTIONS(3803), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [47880] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(71), 1, - sym_class_body, - STATE(1456), 1, - sym_class_heritage, + [74158] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47897] = 5, - ACTIONS(2724), 1, + ACTIONS(2119), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [74169] = 5, + ACTIONS(1216), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3738), 1, anon_sym_extends, - STATE(515), 1, + STATE(1066), 1, sym_class_body, - STATE(1450), 1, + STATE(2301), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47914] = 5, - ACTIONS(2647), 1, + [74186] = 5, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3807), 1, + anon_sym_RBRACK, + STATE(2001), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74203] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3809), 1, + sym_html_character_reference, + ACTIONS(3811), 1, + anon_sym_DQUOTE, + ACTIONS(3813), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1944), 1, + aux_sym__jsx_string_repeat1, + [74222] = 5, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(3815), 1, + anon_sym_class, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74239] = 5, + ACTIONS(3612), 1, + sym_identifier, + ACTIONS(3614), 1, + anon_sym_LBRACK, + ACTIONS(3616), 1, + sym_private_property_identifier, + STATE(807), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74256] = 5, + ACTIONS(89), 1, + anon_sym_AT, + ACTIONS(3720), 1, + anon_sym_class, + STATE(1592), 1, + aux_sym_export_statement_repeat1, + STATE(1661), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74273] = 5, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(3817), 1, + anon_sym_RBRACK, + STATE(2040), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74290] = 5, + ACTIONS(1168), 1, anon_sym_LPAREN, - ACTIONS(2920), 1, + ACTIONS(3819), 1, sym_identifier, - ACTIONS(2922), 1, - anon_sym_STAR, - STATE(1565), 1, + STATE(2106), 1, sym_formal_parameters, + STATE(2243), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47931] = 4, - ACTIONS(2924), 1, + [74307] = 4, + ACTIONS(3746), 1, anon_sym_COMMA, - STATE(1231), 1, + STATE(1942), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 2, + ACTIONS(3821), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47946] = 5, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2929), 1, - sym_optional_chain, - STATE(651), 1, - sym_arguments, + [74322] = 4, + ACTIONS(2030), 1, + anon_sym_COMMA, + STATE(1915), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47963] = 5, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3823), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74337] = 5, + ACTIONS(3738), 1, anon_sym_extends, - STATE(518), 1, + ACTIONS(3772), 1, + anon_sym_LBRACE, + STATE(690), 1, sym_class_body, - STATE(1425), 1, + STATE(2202), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47980] = 5, - ACTIONS(2647), 1, + [74354] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2021), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [74365] = 5, + ACTIONS(1168), 1, anon_sym_LPAREN, - ACTIONS(2931), 1, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(2933), 1, - anon_sym_STAR, - STATE(1434), 1, + STATE(2157), 1, sym_formal_parameters, + STATE(2259), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74382] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2017), 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [74393] = 5, + ACTIONS(3500), 1, + anon_sym_LBRACE, + ACTIONS(3738), 1, + anon_sym_extends, + STATE(956), 1, + sym_class_body, + STATE(2090), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74410] = 4, + ACTIONS(3774), 1, + anon_sym_with, + STATE(2135), 1, + sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47997] = 5, + ACTIONS(3827), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74425] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3829), 1, + anon_sym_DQUOTE, + STATE(1937), 1, + aux_sym_string_repeat1, + ACTIONS(3831), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [74442] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2935), 1, + ACTIONS(3834), 1, anon_sym_DQUOTE, - STATE(1244), 1, + STATE(1937), 1, aux_sym_string_repeat1, - ACTIONS(2889), 2, + ACTIONS(3752), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48014] = 5, + [74459] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2935), 1, + ACTIONS(3836), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1939), 1, aux_sym_string_repeat2, - ACTIONS(2902), 2, + ACTIONS(3838), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48031] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2780), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48048] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48061] = 5, + [74476] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2937), 1, + ACTIONS(3756), 1, anon_sym_SQUOTE, - STATE(1225), 1, + STATE(1890), 1, aux_sym_string_repeat2, - ACTIONS(2939), 2, + ACTIONS(3841), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48078] = 2, + [74493] = 4, + ACTIONS(3843), 1, + anon_sym_COMMA, + STATE(1941), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 4, + ACTIONS(3846), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [48089] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(634), 1, - sym_class_body, - STATE(1589), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48106] = 4, - ACTIONS(2941), 1, + [74508] = 4, + ACTIONS(3746), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + STATE(1941), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 2, + ACTIONS(3848), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48121] = 5, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, + [74523] = 5, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3850), 1, + sym_identifier, + STATE(2155), 1, + aux_sym_non_reserved_keyword, + STATE(2157), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48138] = 5, + [74540] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2948), 1, + ACTIONS(3852), 1, + sym_html_character_reference, + ACTIONS(3855), 1, anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2950), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48155] = 5, + ACTIONS(3857), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1944), 1, + aux_sym__jsx_string_repeat1, + [74559] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2937), 1, - anon_sym_DQUOTE, - STATE(1269), 1, - aux_sym_string_repeat1, - ACTIONS(2953), 2, - sym_unescaped_double_string_fragment, + ACTIONS(3860), 1, + sym_html_character_reference, + ACTIONS(3863), 1, + anon_sym_SQUOTE, + ACTIONS(3865), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1945), 1, + aux_sym__jsx_string_repeat2, + [74578] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3834), 1, + anon_sym_SQUOTE, + STATE(1939), 1, + aux_sym_string_repeat2, + ACTIONS(3744), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [48172] = 5, - ACTIONS(2760), 1, + [74595] = 4, + ACTIONS(1188), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(661), 1, - sym_class_body, - STATE(1564), 1, - sym_class_heritage, + ACTIONS(3243), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(2439), 2, + sym_namespace_import, + sym_named_imports, + [74610] = 4, + ACTIONS(3868), 1, + anon_sym_from, + STATE(2181), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3870), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74625] = 5, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3872), 1, + sym_identifier, + STATE(2106), 1, + sym_formal_parameters, + STATE(2230), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74642] = 5, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3874), 1, + sym_identifier, + STATE(2157), 1, + sym_formal_parameters, + STATE(2244), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48189] = 5, + [74659] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2908), 1, + ACTIONS(3876), 1, anon_sym_DQUOTE, - STATE(1214), 1, + STATE(1892), 1, aux_sym_string_repeat1, - ACTIONS(2955), 2, + ACTIONS(3878), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48206] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48221] = 5, + [74676] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2961), 1, + ACTIONS(3880), 1, + sym_html_character_reference, + ACTIONS(3882), 1, anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48238] = 5, + ACTIONS(3884), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1923), 1, + aux_sym__jsx_string_repeat1, + [74695] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2961), 1, + ACTIONS(3882), 1, anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2902), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48255] = 4, - ACTIONS(2963), 1, + ACTIONS(3886), 1, + sym_html_character_reference, + ACTIONS(3888), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1961), 1, + aux_sym__jsx_string_repeat2, + [74714] = 5, + ACTIONS(1216), 1, + anon_sym_LBRACE, + ACTIONS(3738), 1, + anon_sym_extends, + STATE(1084), 1, + sym_class_body, + STATE(2175), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74731] = 5, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(3890), 1, + sym_identifier, + STATE(2099), 1, + aux_sym_non_reserved_keyword, + STATE(2179), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74748] = 4, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(3453), 1, anon_sym_EQ, - STATE(1388), 1, - sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [48270] = 5, + ACTIONS(3892), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74763] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2965), 1, + ACTIONS(3876), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1911), 1, aux_sym_string_repeat2, - ACTIONS(2967), 2, + ACTIONS(3894), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48287] = 5, - ACTIONS(91), 1, + [74780] = 5, + ACTIONS(89), 1, anon_sym_AT, - ACTIONS(2970), 1, + ACTIONS(3643), 1, anon_sym_class, - STATE(944), 1, + STATE(1592), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1661), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48304] = 5, - ACTIONS(2647), 1, + [74797] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3451), 2, anon_sym_LPAREN, - ACTIONS(2972), 1, + anon_sym_COLON, + ACTIONS(3896), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [74810] = 4, + ACTIONS(3898), 1, sym_identifier, - ACTIONS(2974), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, + STATE(2129), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48321] = 4, - ACTIONS(2957), 1, + ACTIONS(1480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [74825] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3811), 1, + anon_sym_SQUOTE, + ACTIONS(3900), 1, + sym_html_character_reference, + ACTIONS(3902), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1945), 1, + aux_sym__jsx_string_repeat2, + [74844] = 3, + ACTIONS(3906), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3904), 2, anon_sym_COMMA, - STATE(1268), 1, - aux_sym_variable_declaration_repeat1, + anon_sym_RBRACE, + [74856] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2976), 2, + ACTIONS(3645), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [48336] = 2, + [74866] = 4, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(3908), 1, + anon_sym_RBRACE, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [48347] = 4, - ACTIONS(2451), 1, - anon_sym_STAR, - ACTIONS(2453), 1, - anon_sym_LBRACE, + [74880] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1643), 2, - sym_namespace_import, - sym_named_imports, - [48362] = 5, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(354), 1, - sym_class_body, - STATE(1546), 1, - sym_class_heritage, + ACTIONS(3910), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [74890] = 4, + ACTIONS(2405), 1, + anon_sym_RBRACK, + ACTIONS(3912), 1, + anon_sym_COMMA, + STATE(1966), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48379] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + [74904] = 4, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_RBRACE, + STATE(1968), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48396] = 4, - ACTIONS(2957), 1, + [74918] = 4, + ACTIONS(2405), 1, + anon_sym_RBRACE, + ACTIONS(3915), 1, anon_sym_COMMA, - STATE(1248), 1, - aux_sym_variable_declaration_repeat1, + STATE(1968), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74932] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + STATE(2011), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [74946] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2982), 2, + ACTIONS(3846), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [48411] = 5, - ACTIONS(2904), 1, - anon_sym_with, - ACTIONS(2984), 1, - anon_sym_SEMI, - ACTIONS(2986), 1, - sym__automatic_semicolon, - STATE(1528), 1, - sym_import_attribute, + [74956] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(3920), 1, + anon_sym_RBRACE, + STATE(1987), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48428] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - sym_identifier, - ACTIONS(2990), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, + [74970] = 3, + ACTIONS(1192), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48445] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(1190), 2, + anon_sym_LPAREN, + sym_optional_chain, + [74982] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(3920), 1, + anon_sym_RBRACE, + STATE(2045), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2992), 1, - sym_html_character_reference, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1263), 1, - aux_sym__jsx_string_repeat1, - [48464] = 6, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, + [74996] = 4, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(3807), 1, + anon_sym_RBRACK, + STATE(2001), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3000), 1, - sym_html_character_reference, - ACTIONS(3003), 1, - anon_sym_SQUOTE, - ACTIONS(3005), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1264), 1, - aux_sym__jsx_string_repeat2, - [48483] = 2, + sym_comment, + [75010] = 4, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2439), 1, + anon_sym_RBRACK, + STATE(1983), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3008), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [48494] = 5, - ACTIONS(3), 1, + [75024] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + ACTIONS(2477), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [75034] = 3, + ACTIONS(3805), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2845), 1, + sym_comment, + ACTIONS(3922), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75046] = 4, + ACTIONS(1194), 1, anon_sym_DQUOTE, - STATE(1235), 1, - aux_sym_string_repeat1, - ACTIONS(3010), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48511] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3012), 1, + ACTIONS(1196), 1, + anon_sym_SQUOTE, + STATE(2026), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75060] = 4, + ACTIONS(3924), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3926), 1, anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + STATE(2174), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48528] = 4, - ACTIONS(2957), 1, + [75074] = 4, + ACTIONS(2395), 1, anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, + ACTIONS(2439), 1, + anon_sym_RBRACK, + STATE(2003), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3016), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48543] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2912), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48560] = 2, + [75088] = 3, + ACTIONS(3928), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48571] = 4, - ACTIONS(3018), 1, + ACTIONS(1600), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75100] = 4, + ACTIONS(3868), 1, anon_sym_from, - STATE(1402), 1, + ACTIONS(3931), 1, + anon_sym_as, + STATE(2184), 1, sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3020), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48586] = 5, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(3022), 1, - sym_optional_chain, - STATE(528), 1, - sym_arguments, + [75114] = 4, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(3933), 1, + anon_sym_RBRACK, + STATE(2003), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48603] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2730), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [75128] = 4, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(3807), 1, + anon_sym_RBRACK, + STATE(2004), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48620] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + [75142] = 3, + ACTIONS(3935), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48634] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3026), 1, - sym_identifier, - STATE(1567), 1, - sym_formal_parameters, + ACTIONS(1590), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75154] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(3937), 1, + anon_sym_RBRACE, + STATE(2045), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48648] = 4, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(3028), 1, + [75168] = 4, + ACTIONS(2845), 1, anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, + ACTIONS(3939), 1, + anon_sym_RBRACE, + STATE(2045), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48662] = 4, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, + [75182] = 3, + ACTIONS(3941), 1, + anon_sym_DOT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48676] = 4, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3032), 1, + ACTIONS(1190), 2, anon_sym_LPAREN, - STATE(342), 1, - sym_statement_block, + sym_optional_chain, + [75194] = 4, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_RBRACK, + STATE(2040), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48690] = 2, + [75208] = 4, + ACTIONS(1044), 1, + anon_sym_COMMA, + ACTIONS(2427), 1, + anon_sym_RPAREN, + STATE(1996), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 3, + [75222] = 4, + ACTIONS(1044), 1, anon_sym_COMMA, + ACTIONS(2427), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [48700] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + STATE(2049), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75236] = 3, + ACTIONS(3943), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, + ACTIONS(3945), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [48712] = 4, - ACTIONS(2087), 1, + anon_sym_RBRACE, + [75248] = 4, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75262] = 4, + ACTIONS(3949), 1, anon_sym_COMMA, - ACTIONS(3036), 1, + ACTIONS(3951), 1, anon_sym_RBRACE, - STATE(1324), 1, - aux_sym_object_pattern_repeat1, + STATE(2048), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48726] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + [75276] = 4, + ACTIONS(2395), 1, + anon_sym_COMMA, + ACTIONS(2403), 1, + anon_sym_RBRACK, + STATE(2039), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, + [75290] = 4, + ACTIONS(1044), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [48738] = 4, - ACTIONS(698), 1, + ACTIONS(3953), 1, + anon_sym_RPAREN, + STATE(2049), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75304] = 4, + ACTIONS(2395), 1, anon_sym_COMMA, - ACTIONS(3040), 1, + ACTIONS(2403), 1, anon_sym_RBRACK, - STATE(1221), 1, + STATE(2003), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48752] = 4, - ACTIONS(665), 1, + [75318] = 4, + ACTIONS(1011), 1, anon_sym_COMMA, - ACTIONS(3042), 1, + ACTIONS(3817), 1, anon_sym_RBRACK, - STATE(1288), 1, + STATE(2004), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48766] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3044), 1, - sym_identifier, - STATE(1592), 1, - sym_formal_parameters, + [75332] = 4, + ACTIONS(2311), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_COLON, + STATE(2000), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75346] = 4, + ACTIONS(2405), 1, + anon_sym_COLON, + ACTIONS(3955), 1, + anon_sym_COMMA, + STATE(2000), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75360] = 4, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(3958), 1, + anon_sym_RBRACK, + STATE(2004), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48780] = 4, - ACTIONS(3046), 1, + [75374] = 4, + ACTIONS(3960), 1, anon_sym_COMMA, - ACTIONS(3049), 1, + ACTIONS(3963), 1, anon_sym_RBRACE, - STATE(1286), 1, + STATE(2002), 1, aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48794] = 4, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - STATE(1359), 1, - sym_string, + [75388] = 4, + ACTIONS(2477), 1, + anon_sym_RBRACK, + ACTIONS(3965), 1, + anon_sym_COMMA, + STATE(2003), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48808] = 4, - ACTIONS(3034), 1, + [75402] = 4, + ACTIONS(3922), 1, anon_sym_RBRACK, - ACTIONS(3051), 1, + ACTIONS(3968), 1, anon_sym_COMMA, - STATE(1288), 1, + STATE(2004), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48822] = 4, - ACTIONS(1987), 1, + [75416] = 3, + ACTIONS(3971), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1600), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [75428] = 3, + ACTIONS(3764), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3974), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [75440] = 4, + ACTIONS(3976), 1, + sym_identifier, + ACTIONS(3978), 1, + sym_jsx_identifier, + STATE(1807), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75454] = 3, + ACTIONS(3980), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3473), 2, + anon_sym_in, + anon_sym_of, + [75466] = 4, + ACTIONS(3974), 1, + anon_sym_RPAREN, + ACTIONS(3982), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75480] = 4, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_RBRACK, + STATE(1966), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75494] = 4, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(3985), 1, anon_sym_RBRACE, - STATE(1336), 1, + STATE(2045), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48836] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3056), 1, + [75508] = 4, + ACTIONS(3249), 1, anon_sym_COLON, - STATE(1521), 1, - sym_formal_parameters, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3987), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75522] = 3, + ACTIONS(3989), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48850] = 4, - ACTIONS(1987), 1, + ACTIONS(1590), 2, anon_sym_COMMA, - ACTIONS(3058), 1, anon_sym_RBRACE, - STATE(1297), 1, + [75534] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(3918), 1, + anon_sym_RBRACE, + STATE(2045), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48864] = 4, - ACTIONS(1987), 1, + [75548] = 4, + ACTIONS(2951), 1, anon_sym_COMMA, - ACTIONS(3058), 1, + ACTIONS(3991), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48878] = 2, + [75562] = 3, + ACTIONS(2056), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2026), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [75574] = 4, + ACTIONS(3993), 1, + sym_identifier, + ACTIONS(3995), 1, + sym_private_property_identifier, + STATE(699), 1, + aux_sym_non_reserved_keyword, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75588] = 4, + ACTIONS(1582), 1, + anon_sym_LBRACE, + ACTIONS(3997), 1, + anon_sym_LPAREN, + STATE(694), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75602] = 4, + ACTIONS(2135), 1, + anon_sym_COMMA, + ACTIONS(3823), 1, + anon_sym_RPAREN, + STATE(2035), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75616] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3060), 3, + ACTIONS(3999), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [48888] = 3, - ACTIONS(3062), 1, - anon_sym_as, + [75626] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(4001), 1, + anon_sym_RBRACE, + STATE(2045), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75640] = 4, + ACTIONS(4003), 1, + anon_sym_COMMA, + ACTIONS(4005), 1, + anon_sym_RBRACE, + STATE(2065), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75654] = 3, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1626), 2, + anon_sym_in, + anon_sym_of, + [75666] = 3, + ACTIONS(4009), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3064), 2, + ACTIONS(1600), 2, anon_sym_COMMA, anon_sym_RBRACE, - [48900] = 4, - ACTIONS(3066), 1, + [75678] = 4, + ACTIONS(2951), 1, anon_sym_COMMA, - ACTIONS(3068), 1, + ACTIONS(4012), 1, anon_sym_RBRACE, - STATE(1361), 1, - aux_sym_export_clause_repeat1, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75692] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48914] = 4, - ACTIONS(1987), 1, + ACTIONS(4014), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [75702] = 4, + ACTIONS(2359), 1, anon_sym_COMMA, - ACTIONS(3070), 1, + ACTIONS(3823), 1, + anon_sym_SEMI, + STATE(2050), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75716] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(4016), 1, anon_sym_RBRACE, - STATE(1366), 1, + STATE(2045), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48928] = 4, - ACTIONS(1987), 1, + [75730] = 4, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(4018), 1, + anon_sym_RBRACE, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75744] = 4, + ACTIONS(2951), 1, anon_sym_COMMA, - ACTIONS(3072), 1, + ACTIONS(4020), 1, anon_sym_RBRACE, - STATE(1366), 1, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75758] = 4, + ACTIONS(2845), 1, + anon_sym_COMMA, + ACTIONS(4022), 1, + anon_sym_RBRACE, + STATE(2045), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48942] = 3, - ACTIONS(2855), 1, + [75772] = 4, + ACTIONS(3760), 1, + anon_sym_COMMA, + ACTIONS(3762), 1, + anon_sym_RPAREN, + STATE(2042), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75786] = 3, + ACTIONS(3675), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1626), 2, + anon_sym_in, + anon_sym_of, + [75798] = 4, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(4024), 1, + anon_sym_COLON, + STATE(2126), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75812] = 4, + ACTIONS(2405), 1, + anon_sym_RPAREN, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(2035), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75826] = 4, + ACTIONS(1044), 1, + anon_sym_COMMA, + ACTIONS(2399), 1, + anon_sym_RPAREN, + STATE(2046), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75840] = 4, + ACTIONS(1044), 1, + anon_sym_COMMA, + ACTIONS(2399), 1, + anon_sym_RPAREN, + STATE(2049), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75854] = 3, + ACTIONS(4029), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, + ACTIONS(1600), 2, anon_sym_COMMA, anon_sym_RPAREN, - [48954] = 4, - ACTIONS(3076), 1, + [75866] = 4, + ACTIONS(2395), 1, anon_sym_COMMA, - ACTIONS(3078), 1, - anon_sym_RBRACE, - STATE(1321), 1, - aux_sym_named_imports_repeat1, + ACTIONS(4032), 1, + anon_sym_RBRACK, + STATE(2003), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [75880] = 4, + ACTIONS(1011), 1, + anon_sym_COMMA, + ACTIONS(4034), 1, + anon_sym_RBRACK, + STATE(2004), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48968] = 3, - ACTIONS(3080), 1, + [75894] = 3, + ACTIONS(4036), 1, anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3082), 2, + ACTIONS(4038), 2, anon_sym_COMMA, anon_sym_RBRACE, - [48980] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(1521), 1, - sym_formal_parameters, + [75906] = 4, + ACTIONS(1042), 1, + anon_sym_RPAREN, + ACTIONS(4040), 1, + anon_sym_COMMA, + STATE(2009), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48994] = 3, - ACTIONS(3086), 1, + [75920] = 4, + ACTIONS(4042), 1, sym_identifier, + ACTIONS(4044), 1, + anon_sym_STAR, + STATE(2087), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3088), 2, + [75934] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4046), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [49006] = 4, - ACTIONS(698), 1, + [75944] = 4, + ACTIONS(4048), 1, anon_sym_COMMA, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1306), 1, - aux_sym_array_repeat1, + ACTIONS(4051), 1, + anon_sym_RBRACE, + STATE(2045), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49020] = 4, - ACTIONS(698), 1, + [75958] = 4, + ACTIONS(1044), 1, anon_sym_COMMA, - ACTIONS(1745), 1, + ACTIONS(4053), 1, anon_sym_RPAREN, - STATE(1221), 1, + STATE(2049), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49034] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3090), 1, - anon_sym_GT, + [75972] = 4, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(4012), 1, + anon_sym_RBRACE, + STATE(1964), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49048] = 4, - ACTIONS(698), 1, + [75986] = 4, + ACTIONS(3443), 1, + anon_sym_RBRACE, + ACTIONS(4055), 1, anon_sym_COMMA, - ACTIONS(3092), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + STATE(2002), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49062] = 4, - ACTIONS(3074), 1, + [76000] = 4, + ACTIONS(2477), 1, anon_sym_RPAREN, - ACTIONS(3094), 1, + ACTIONS(4057), 1, anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49076] = 2, + STATE(2049), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [76014] = 4, + ACTIONS(2405), 1, anon_sym_SEMI, - [49086] = 4, - ACTIONS(1987), 1, + ACTIONS(4060), 1, anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + STATE(2050), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49100] = 4, - ACTIONS(1987), 1, + [76028] = 4, + ACTIONS(1044), 1, anon_sym_COMMA, - ACTIONS(3097), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(2407), 1, + anon_sym_RPAREN, + STATE(2066), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49114] = 4, - ACTIONS(2087), 1, + [76042] = 4, + ACTIONS(1044), 1, anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2407), 1, + anon_sym_RPAREN, + STATE(2049), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49128] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [76056] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49142] = 3, - ACTIONS(3101), 1, + ACTIONS(4063), 3, sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [76066] = 4, + ACTIONS(4065), 1, + anon_sym_COMMA, + ACTIONS(4068), 1, + anon_sym_RBRACE, + STATE(2054), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [49154] = 4, - ACTIONS(2475), 1, + [76080] = 4, + ACTIONS(3249), 1, anon_sym_COLON, - ACTIONS(2481), 1, + ACTIONS(3255), 1, anon_sym_DOT, - ACTIONS(3103), 1, + ACTIONS(4070), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49168] = 4, - ACTIONS(3105), 1, + [76094] = 4, + ACTIONS(4072), 1, anon_sym_LPAREN, - ACTIONS(3107), 1, + ACTIONS(4074), 1, anon_sym_await, - STATE(33), 1, + STATE(67), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49182] = 4, - ACTIONS(2647), 1, + [76108] = 4, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3109), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + ACTIONS(4078), 1, + anon_sym_await, + STATE(37), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49196] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [76122] = 4, + ACTIONS(4080), 1, + sym_identifier, + ACTIONS(4082), 1, + sym_private_property_identifier, + STATE(822), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49210] = 2, + [76136] = 4, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(4084), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [49220] = 4, - ACTIONS(698), 1, + [76150] = 4, + ACTIONS(2951), 1, anon_sym_COMMA, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(1317), 1, - aux_sym_array_repeat1, + ACTIONS(4086), 1, + anon_sym_RBRACE, + STATE(2030), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49234] = 4, - ACTIONS(698), 1, + [76164] = 4, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(4088), 1, + anon_sym_RBRACE, + STATE(2031), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49248] = 4, - ACTIONS(2592), 1, - anon_sym_RBRACE, - ACTIONS(3113), 1, - anon_sym_COMMA, - STATE(1286), 1, - aux_sym_named_imports_repeat1, + [76178] = 4, + ACTIONS(1272), 1, + anon_sym_while, + ACTIONS(4090), 1, + anon_sym_else, + STATE(743), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49262] = 4, - ACTIONS(2835), 1, + [76192] = 4, + ACTIONS(3612), 1, sym_identifier, - ACTIONS(2837), 1, - anon_sym_LBRACK, - ACTIONS(2839), 1, + ACTIONS(3616), 1, sym_private_property_identifier, + STATE(807), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49276] = 4, - ACTIONS(968), 1, - anon_sym_while, - ACTIONS(3115), 1, - anon_sym_else, - STATE(404), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49290] = 4, - ACTIONS(2087), 1, + [76206] = 4, + ACTIONS(2845), 1, anon_sym_COMMA, - ACTIONS(3117), 1, + ACTIONS(4088), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + STATE(2045), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49304] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, + [76220] = 4, + ACTIONS(3441), 1, + anon_sym_RBRACE, + ACTIONS(4092), 1, + anon_sym_COMMA, + STATE(2054), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1321), 2, - anon_sym_in, - anon_sym_of, - [49316] = 4, - ACTIONS(698), 1, + [76234] = 4, + ACTIONS(1044), 1, anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(1283), 1, + ACTIONS(4094), 1, + anon_sym_RPAREN, + STATE(2049), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49330] = 2, + [76248] = 4, + ACTIONS(2951), 1, + anon_sym_COMMA, + ACTIONS(4086), 1, + anon_sym_RBRACE, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3119), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49340] = 4, - ACTIONS(698), 1, + [76262] = 4, + ACTIONS(4096), 1, anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(4099), 1, + anon_sym_RBRACE, + STATE(2068), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [76276] = 4, + ACTIONS(1168), 1, + anon_sym_LPAREN, + ACTIONS(4101), 1, + anon_sym_COLON, + STATE(2126), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49354] = 3, - ACTIONS(3121), 1, + [76290] = 4, + ACTIONS(3520), 1, sym_identifier, + ACTIONS(3524), 1, + sym_private_property_identifier, + STATE(702), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49366] = 4, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RBRACE, - STATE(1330), 1, - aux_sym_export_clause_repeat1, + [76304] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49380] = 2, + [76315] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1615), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3130), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49390] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACE, - STATE(1353), 1, - aux_sym_object_pattern_repeat1, + [76326] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1611), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49404] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACE, - STATE(1354), 1, - aux_sym_object_repeat1, + [76337] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1612), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49418] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [76348] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1613), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49432] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [76359] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2158), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49446] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3136), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [76370] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49460] = 3, - ACTIONS(3138), 1, - anon_sym_DOT, + [76381] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49472] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3140), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + [76392] = 3, + ACTIONS(3868), 1, + anon_sym_from, + STATE(2178), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49486] = 4, - ACTIONS(3142), 1, - sym_identifier, - STATE(917), 1, - sym_decorator_member_expression, - STATE(1002), 1, - sym_decorator_call_expression, + [76403] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49500] = 3, - ACTIONS(2457), 1, - anon_sym_DOT, + ACTIONS(4105), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76412] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49512] = 4, - ACTIONS(665), 1, + ACTIONS(3963), 2, anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [76421] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49526] = 3, - ACTIONS(2895), 1, - anon_sym_EQ, + ACTIONS(2032), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76430] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1321), 2, - anon_sym_in, - anon_sym_of, - [49538] = 4, - ACTIONS(665), 1, + ACTIONS(4051), 2, anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + anon_sym_RBRACE, + [76439] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1612), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49552] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(1355), 1, - aux_sym_array_repeat1, + [76450] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49566] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(4107), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [76459] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1613), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49580] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + [76470] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2200), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49594] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + [76481] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1098), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49608] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3146), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + [76492] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49622] = 4, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - sym_private_property_identifier, + [76503] = 3, + ACTIONS(3500), 1, + anon_sym_LBRACE, + STATE(957), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49636] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3148), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [76514] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1628), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49650] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + [76525] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49664] = 4, - ACTIONS(2087), 1, + ACTIONS(3904), 2, anon_sym_COMMA, - ACTIONS(3152), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [76534] = 3, + ACTIONS(3647), 1, + anon_sym_in, + ACTIONS(3649), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49678] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3154), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [76545] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49692] = 4, - ACTIONS(1987), 1, + ACTIONS(4099), 2, anon_sym_COMMA, - ACTIONS(3156), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [76554] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2302), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49706] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + [76565] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2075), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49720] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + [76576] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2113), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49734] = 3, - ACTIONS(1632), 1, - anon_sym_in, + [76587] = 3, + ACTIONS(4109), 1, + anon_sym_LBRACE, + STATE(990), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [49746] = 4, - ACTIONS(3162), 1, + [76598] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - ACTIONS(3164), 1, - anon_sym_await, - STATE(27), 1, - sym__for_header, + STATE(2114), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [76609] = 3, + ACTIONS(4109), 1, + anon_sym_LBRACE, + STATE(958), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49760] = 2, + [76620] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2201), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3166), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [49770] = 2, + [76631] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3168), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49780] = 4, - ACTIONS(2614), 1, - anon_sym_RBRACE, - ACTIONS(3170), 1, - anon_sym_COMMA, - STATE(1330), 1, - aux_sym_export_clause_repeat1, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [76640] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49794] = 4, - ACTIONS(698), 1, + ACTIONS(3974), 2, anon_sym_COMMA, - ACTIONS(1795), 1, anon_sym_RPAREN, - STATE(1367), 1, - aux_sym_array_repeat1, + [76649] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1628), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49808] = 4, - ACTIONS(3018), 1, - anon_sym_from, - ACTIONS(3172), 1, - anon_sym_as, - STATE(1543), 1, - sym__from_clause, + [76660] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49822] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(1828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76669] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1028), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49836] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [76680] = 3, + ACTIONS(3500), 1, + anon_sym_LBRACE, + STATE(972), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49850] = 4, - ACTIONS(3176), 1, - anon_sym_COMMA, - ACTIONS(3179), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [76691] = 3, + ACTIONS(4109), 1, + anon_sym_LBRACE, + STATE(973), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49864] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3181), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [76702] = 3, + ACTIONS(4113), 1, + anon_sym_LBRACE, + STATE(703), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49878] = 4, - ACTIONS(3183), 1, - anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [76713] = 3, + ACTIONS(4115), 1, + sym_identifier, + STATE(1899), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49892] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_array_pattern_repeat1, + [76724] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1609), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49906] = 4, - ACTIONS(2647), 1, + [76735] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - ACTIONS(3188), 1, - sym_identifier, - STATE(1437), 1, + STATE(2098), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49920] = 3, - ACTIONS(2119), 1, + [76746] = 3, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(968), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49931] = 3, - ACTIONS(2119), 1, + [76757] = 3, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(969), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49942] = 3, - ACTIONS(3190), 1, + [76768] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(1600), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49953] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1449), 1, - sym_formal_parameters, + [76779] = 3, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3987), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49964] = 3, - ACTIONS(3192), 1, + [76790] = 3, + ACTIONS(4113), 1, anon_sym_LBRACE, - STATE(663), 1, + STATE(688), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49975] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_statement_block, + [76801] = 3, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3987), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49986] = 3, - ACTIONS(2647), 1, + [76812] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(4117), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76821] = 3, + ACTIONS(4119), 1, anon_sym_LPAREN, - STATE(1373), 1, - sym_formal_parameters, + STATE(52), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49997] = 3, - ACTIONS(3192), 1, + [76832] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(73), 1, + STATE(1597), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50008] = 2, + [76843] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3194), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50017] = 3, - ACTIONS(2647), 1, + [76854] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1580), 1, + STATE(2277), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50028] = 2, + [76865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50037] = 2, + ACTIONS(4121), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76874] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3196), 2, + ACTIONS(3922), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [76883] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [50046] = 2, + STATE(1594), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3198), 2, - anon_sym_in, - anon_sym_of, - [50055] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, + [76894] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50066] = 3, - ACTIONS(3030), 1, + ACTIONS(883), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76903] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(667), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50077] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(949), 1, - sym_statement_block, + [76914] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50088] = 3, - ACTIONS(3200), 1, - anon_sym_LPAREN, - STATE(358), 1, - sym_parenthesized_expression, + ACTIONS(4123), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76923] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50099] = 3, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 1, - anon_sym_of, + ACTIONS(4125), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76932] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1609), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50110] = 3, - ACTIONS(3202), 1, - sym_identifier, - ACTIONS(3204), 1, - anon_sym_STAR, + [76943] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(122), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50121] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3090), 1, - anon_sym_GT, + [76954] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2115), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50132] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_statement_block, + [76965] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2154), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50143] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3090), 1, - anon_sym_GT, + [76976] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50154] = 3, - ACTIONS(3030), 1, + ACTIONS(4127), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [76985] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(360), 1, + STATE(1610), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50165] = 3, - ACTIONS(2647), 1, + [76996] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1576), 1, + STATE(2163), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50176] = 3, - ACTIONS(3206), 1, - sym_identifier, - ACTIONS(3208), 1, - sym_private_property_identifier, + [77007] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2078), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50187] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(522), 1, - sym_statement_block, + [77018] = 3, + ACTIONS(4129), 1, + sym_identifier, + STATE(1810), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50198] = 2, + [77029] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50207] = 3, - ACTIONS(3210), 1, - anon_sym_SEMI, - ACTIONS(3212), 1, - sym__automatic_semicolon, + [77040] = 3, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50218] = 2, + [77051] = 3, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(2168), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50227] = 3, - ACTIONS(3216), 1, + [77062] = 3, + ACTIONS(3772), 1, anon_sym_LBRACE, - STATE(1562), 1, - sym_object, + STATE(696), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50238] = 2, + [77073] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1594), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50247] = 3, - ACTIONS(3220), 1, - anon_sym_SEMI, - ACTIONS(3222), 1, - sym__automatic_semicolon, + [77084] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1598), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50258] = 3, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2839), 1, - sym_private_property_identifier, + [77095] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1602), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50269] = 3, - ACTIONS(3192), 1, + [77106] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(1634), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50280] = 3, - ACTIONS(2647), 1, + [77117] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1538), 1, + STATE(2100), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50291] = 2, + [77128] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [77139] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1055), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50300] = 2, + [77150] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 2, + ACTIONS(4131), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50309] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1539), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50320] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_formal_parameters, + [77159] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1622), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50331] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1471), 1, - sym_formal_parameters, + [77170] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50342] = 3, - ACTIONS(3030), 1, + ACTIONS(1837), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77179] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(346), 1, + STATE(1601), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50353] = 3, - ACTIONS(2647), 1, + [77190] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1606), 1, + STATE(2309), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50364] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + [77201] = 3, + ACTIONS(4133), 1, + sym_identifier, + STATE(1590), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50375] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1472), 1, - sym_formal_parameters, + [77212] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1012), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50386] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3103), 1, - anon_sym_GT, + [77223] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(126), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50397] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_formal_parameters, + [77234] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50408] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_GT, + [77245] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50419] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1396), 1, - sym_formal_parameters, + ACTIONS(1615), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77254] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50430] = 3, - ACTIONS(3190), 1, + [77265] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(1624), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50441] = 3, - ACTIONS(3190), 1, + [77276] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(520), 1, + STATE(1606), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50452] = 2, + [77287] = 3, + ACTIONS(4135), 1, + sym_identifier, + STATE(2205), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50461] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1475), 1, - sym_formal_parameters, + [77298] = 3, + ACTIONS(4137), 1, + sym_identifier, + STATE(2328), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50472] = 2, + [77309] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3224), 2, + ACTIONS(4139), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [50481] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1398), 1, - sym__from_clause, + [77318] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1593), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50492] = 3, - ACTIONS(2724), 1, + [77329] = 3, + ACTIONS(4141), 1, anon_sym_LBRACE, - STATE(521), 1, - sym_class_body, + STATE(713), 1, + sym_switch_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50503] = 3, - ACTIONS(3226), 1, + [77340] = 3, + ACTIONS(3451), 1, anon_sym_LPAREN, - STATE(25), 1, - sym_parenthesized_expression, + ACTIONS(4143), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50514] = 3, - ACTIONS(2760), 1, + [77351] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(72), 1, - sym_class_body, + STATE(1622), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50525] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + [77362] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(124), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50536] = 2, + [77373] = 3, + ACTIONS(4145), 1, + sym_identifier, + STATE(2101), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [50545] = 2, + [77384] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2285), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3179), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50554] = 3, - ACTIONS(3226), 1, + [77395] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + STATE(2109), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50565] = 3, - ACTIONS(2119), 1, + [77406] = 3, + ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50576] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_formal_parameters, + STATE(1113), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50587] = 3, - ACTIONS(3192), 1, + [77417] = 3, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(627), 1, + STATE(994), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50598] = 2, + [77428] = 3, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(1097), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 2, - sym__automatic_semicolon, + [77439] = 3, + ACTIONS(4147), 1, anon_sym_SEMI, - [50607] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1404), 1, - sym_formal_parameters, + ACTIONS(4149), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50618] = 3, - ACTIONS(3192), 1, + [77450] = 3, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(633), 1, + STATE(939), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50629] = 3, - ACTIONS(3228), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50640] = 3, - ACTIONS(2119), 1, + [77461] = 3, + ACTIONS(4103), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(1083), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50651] = 3, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + [77472] = 3, + ACTIONS(4151), 1, + anon_sym_SEMI, + ACTIONS(4153), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50662] = 3, - ACTIONS(3030), 1, + [77483] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(1626), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50673] = 3, - ACTIONS(3192), 1, + [77494] = 3, + ACTIONS(4155), 1, anon_sym_LBRACE, - STATE(70), 1, - sym_statement_block, + STATE(2080), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50684] = 3, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(3230), 1, - anon_sym_EQ_GT, + [77505] = 3, + ACTIONS(4157), 1, + anon_sym_SEMI, + ACTIONS(4159), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50695] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1569), 1, - sym_formal_parameters, + [77516] = 3, + ACTIONS(4161), 1, + sym_identifier, + STATE(1931), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50706] = 3, - ACTIONS(3232), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_from, + [77527] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50717] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1261), 1, - sym__from_clause, + [77538] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1611), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [77549] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2219), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50728] = 2, + [77560] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3236), 2, + ACTIONS(2131), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50737] = 2, + [77569] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3238), 2, + ACTIONS(1899), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50746] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(68), 1, - sym_statement_block, + [77578] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50757] = 3, - ACTIONS(2724), 1, + ACTIONS(1903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [77587] = 3, + ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(516), 1, + STATE(125), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50768] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(3240), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50777] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_statement_block, + [77598] = 3, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50788] = 2, + [77609] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2220), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50797] = 2, + [77620] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, + ACTIONS(4068), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50806] = 2, + [77629] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2268), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3244), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50815] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(75), 1, - sym_class_body, + [77640] = 3, + ACTIONS(1607), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50826] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(1464), 1, - sym_parenthesized_expression, + [77651] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50837] = 3, - ACTIONS(2647), 1, + ACTIONS(4163), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [77660] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1586), 1, + STATE(2117), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50848] = 3, - ACTIONS(2119), 1, + [77671] = 3, + ACTIONS(4113), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(687), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50859] = 3, - ACTIONS(3030), 1, + [77682] = 3, + ACTIONS(4113), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(683), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50870] = 2, + [77693] = 3, + ACTIONS(3772), 1, + anon_sym_LBRACE, + STATE(682), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50879] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1555), 1, - sym_formal_parameters, + [77704] = 3, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(4070), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50890] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1529), 1, - sym_formal_parameters, + [77715] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50901] = 3, - ACTIONS(3248), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_switch_body, + ACTIONS(2119), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [77724] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50912] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym_formal_parameters, + ACTIONS(4165), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [77733] = 3, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(4070), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50923] = 3, - ACTIONS(2647), 1, + [77744] = 3, + ACTIONS(1607), 1, anon_sym_LPAREN, - STATE(1590), 1, - sym_formal_parameters, + STATE(65), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50934] = 3, - ACTIONS(2647), 1, + [77755] = 3, + ACTIONS(1607), 1, anon_sym_LPAREN, - STATE(1557), 1, - sym_formal_parameters, + STATE(66), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50945] = 2, + [77766] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3128), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50954] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1593), 1, - sym_formal_parameters, + ACTIONS(4167), 2, + anon_sym_in, + anon_sym_of, + [77775] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1623), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50965] = 3, - ACTIONS(2647), 1, + [77786] = 3, + ACTIONS(1607), 1, anon_sym_LPAREN, - STATE(1594), 1, - sym_formal_parameters, + STATE(68), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50976] = 3, - ACTIONS(3030), 1, + [77797] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(1624), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50987] = 3, - ACTIONS(3030), 1, + [77808] = 3, + ACTIONS(3500), 1, anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + STATE(943), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [77819] = 3, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(4084), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50998] = 3, - ACTIONS(3228), 1, + [77830] = 3, + ACTIONS(4119), 1, anon_sym_LPAREN, - STATE(52), 1, + STATE(71), 1, sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51009] = 3, - ACTIONS(3226), 1, + [77841] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, + STATE(2140), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51020] = 3, - ACTIONS(3030), 1, + [77852] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(1607), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51031] = 2, + [77863] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2180), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3250), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51040] = 3, - ACTIONS(2119), 1, + [77874] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(1593), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51051] = 3, - ACTIONS(3030), 1, + [77885] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(937), 1, + STATE(1626), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51062] = 2, + [77896] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3252), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51071] = 3, - ACTIONS(3030), 1, + [77907] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(938), 1, + STATE(1627), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51082] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + [77918] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2217), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [77929] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2222), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51093] = 3, - ACTIONS(3254), 1, + [77940] = 3, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(4084), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [77951] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(1619), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51104] = 2, + [77962] = 3, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(1063), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51113] = 3, - ACTIONS(2647), 1, + [77973] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1598), 1, + STATE(2231), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51124] = 3, - ACTIONS(2647), 1, + [77984] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1599), 1, + STATE(2241), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51135] = 3, - ACTIONS(2647), 1, + [77995] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1600), 1, + STATE(2266), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51146] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1602), 1, - sym_formal_parameters, + [78006] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51157] = 3, - ACTIONS(2647), 1, + [78017] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1603), 1, + STATE(2274), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51168] = 3, - ACTIONS(2647), 1, + [78028] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1604), 1, + STATE(2276), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51179] = 2, + [78039] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2280), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3258), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51188] = 2, + [78050] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2282), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51197] = 3, - ACTIONS(2647), 1, + [78061] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1607), 1, + STATE(2288), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51208] = 3, - ACTIONS(2647), 1, + [78072] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1609), 1, + STATE(2289), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51219] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1442), 1, - sym_formal_parameters, + [78083] = 3, + ACTIONS(4169), 1, + sym_identifier, + STATE(2199), 1, + aux_sym_non_reserved_keyword, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51230] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1612), 1, - sym_formal_parameters, + [78094] = 3, + ACTIONS(3868), 1, + anon_sym_from, + STATE(1900), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51241] = 3, - ACTIONS(3030), 1, + [78105] = 3, + ACTIONS(4109), 1, anon_sym_LBRACE, - STATE(940), 1, + STATE(944), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51252] = 3, - ACTIONS(3030), 1, + [78116] = 3, + ACTIONS(4103), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1073), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51263] = 3, - ACTIONS(2647), 1, + [78127] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1482), 1, + STATE(2299), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51274] = 3, - ACTIONS(2647), 1, + [78138] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1613), 1, + STATE(2300), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51285] = 3, - ACTIONS(2647), 1, + [78149] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1372), 1, + STATE(2303), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51296] = 3, - ACTIONS(2647), 1, + [78160] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1371), 1, + STATE(2306), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51307] = 3, - ACTIONS(2647), 1, + [78171] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1510), 1, + STATE(2310), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51318] = 3, - ACTIONS(2647), 1, + [78182] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1376), 1, + STATE(2311), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51329] = 3, - ACTIONS(2647), 1, + [78193] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1384), 1, + STATE(2072), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51340] = 3, - ACTIONS(2647), 1, + [78204] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(2159), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51351] = 3, - ACTIONS(2647), 1, + [78215] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1391), 1, + STATE(2091), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51362] = 3, - ACTIONS(2647), 1, + [78226] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1432), 1, + STATE(2131), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51373] = 3, - ACTIONS(2647), 1, + [78237] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1439), 1, + STATE(2257), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51384] = 3, - ACTIONS(2647), 1, + [78248] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1452), 1, + STATE(2073), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51395] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51406] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_statement_block, + [78259] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2084), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51417] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_statement_block, + [78270] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2086), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51428] = 3, - ACTIONS(2647), 1, + [78281] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1522), 1, + STATE(2089), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51439] = 3, - ACTIONS(3030), 1, + [78292] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(1610), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51450] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1524), 1, - sym_formal_parameters, + [78303] = 3, + ACTIONS(4171), 1, + anon_sym_COMMA, + ACTIONS(4173), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51461] = 3, - ACTIONS(2647), 1, + [78314] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1535), 1, + STATE(2150), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51472] = 3, - ACTIONS(2647), 1, + [78325] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1573), 1, + STATE(2152), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51483] = 3, - ACTIONS(2647), 1, + [78336] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1577), 1, + STATE(2161), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51494] = 3, - ACTIONS(2647), 1, + [78347] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1591), 1, + STATE(2162), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51505] = 3, - ACTIONS(2647), 1, + [78358] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1596), 1, + STATE(2167), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51516] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + [78369] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2182), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51527] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(657), 1, - sym_statement_block, + [78380] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2186), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51538] = 3, - ACTIONS(3254), 1, + [78391] = 3, + ACTIONS(4103), 1, anon_sym_LBRACE, - STATE(350), 1, + STATE(1074), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51549] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, + [78402] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2149), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51560] = 3, - ACTIONS(3030), 1, + [78413] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(1604), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51571] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_statement_block, + [78424] = 3, + ACTIONS(4175), 1, + anon_sym_LPAREN, + STATE(693), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51582] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_statement_block, + [78435] = 3, + ACTIONS(3249), 1, + anon_sym_COLON, + ACTIONS(3947), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51593] = 3, - ACTIONS(3260), 1, + [78446] = 3, + ACTIONS(4177), 1, anon_sym_SEMI, - ACTIONS(3262), 1, + ACTIONS(4179), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51604] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_statement_block, + [78457] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2121), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51615] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1478), 1, - sym_formal_parameters, + [78468] = 3, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(1086), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51626] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym_formal_parameters, + [78479] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51637] = 3, - ACTIONS(2647), 1, + [78490] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1481), 1, + STATE(2132), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51648] = 3, - ACTIONS(2724), 1, + [78501] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(539), 1, - sym_class_body, + STATE(1616), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51659] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3144), 1, - anon_sym_GT, + [78512] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1616), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51670] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym_statement_block, + [78523] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2145), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51681] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + [78534] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2146), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51692] = 3, - ACTIONS(3190), 1, + [78545] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(1599), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51703] = 3, - ACTIONS(3030), 1, + [78556] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(1621), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51714] = 3, - ACTIONS(3030), 1, + [78567] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(1600), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51725] = 3, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(3266), 1, - sym_jsx_identifier, + [78578] = 3, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(1033), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51736] = 3, - ACTIONS(3268), 1, - sym_identifier, - ACTIONS(3270), 1, - sym_private_property_identifier, + [78589] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2071), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51747] = 3, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2796), 1, - sym_private_property_identifier, + [78600] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(1599), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51758] = 3, - ACTIONS(3272), 1, - anon_sym_SEMI, - ACTIONS(3274), 1, - sym__automatic_semicolon, + [78611] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2226), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51769] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_statement_block, + [78622] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51780] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, + ACTIONS(4181), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [78631] = 3, + ACTIONS(2975), 1, + anon_sym_LBRACE, + STATE(1601), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51791] = 3, - ACTIONS(2867), 1, + [78642] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(351), 1, - sym_class_body, + STATE(1606), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51802] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, + [78653] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51813] = 3, - ACTIONS(2647), 1, + ACTIONS(2114), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78662] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1419), 1, + STATE(2170), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51824] = 2, + [78673] = 3, + ACTIONS(3500), 1, + anon_sym_LBRACE, + STATE(970), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51833] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(680), 1, - sym_statement_block, + [78684] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2074), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51844] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_statement_block, + [78695] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2104), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51855] = 3, - ACTIONS(2647), 1, + [78706] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1496), 1, + STATE(2111), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51866] = 3, - ACTIONS(2647), 1, + [78717] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1497), 1, + STATE(2136), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51877] = 3, - ACTIONS(2647), 1, + [78728] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2210), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [78739] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - STATE(1514), 1, + STATE(2212), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51888] = 3, - ACTIONS(3030), 1, + [78750] = 3, + ACTIONS(4103), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(1096), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51899] = 3, - ACTIONS(3030), 1, + [78761] = 3, + ACTIONS(4103), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(1064), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51910] = 3, - ACTIONS(3030), 1, + [78772] = 3, + ACTIONS(1216), 1, + anon_sym_LBRACE, + STATE(1036), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [78783] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(1621), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51921] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1413), 1, - sym_formal_parameters, + [78794] = 3, + ACTIONS(4103), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51932] = 2, + [78805] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 2, + ACTIONS(4183), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [78814] = 3, + ACTIONS(1168), 1, anon_sym_LPAREN, - anon_sym_COLON, - [51941] = 3, - ACTIONS(2760), 1, + STATE(2187), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [78825] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(679), 1, - sym_class_body, + STATE(1597), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51952] = 2, + [78836] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1406), 2, + ACTIONS(4185), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51961] = 2, + [78845] = 3, + ACTIONS(3255), 1, + anon_sym_DOT, + ACTIONS(3947), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51970] = 3, - ACTIONS(3030), 1, + [78856] = 3, + ACTIONS(4103), 1, anon_sym_LBRACE, - STATE(955), 1, + STATE(127), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51981] = 3, - ACTIONS(2760), 1, + [78867] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(638), 1, - sym_class_body, + STATE(1598), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51992] = 3, - ACTIONS(3190), 1, + [78878] = 3, + ACTIONS(2975), 1, anon_sym_LBRACE, - STATE(559), 1, + STATE(1602), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52003] = 3, - ACTIONS(2760), 1, + [78889] = 3, + ACTIONS(4119), 1, + anon_sym_LPAREN, + STATE(81), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [78900] = 3, + ACTIONS(1216), 1, anon_sym_LBRACE, - STATE(640), 1, + STATE(128), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52014] = 3, - ACTIONS(3190), 1, + [78911] = 3, + ACTIONS(1582), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(763), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52025] = 2, + [78922] = 3, + ACTIONS(1168), 1, + anon_sym_LPAREN, + STATE(2171), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52034] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(642), 1, - sym_statement_block, + [78933] = 2, + ACTIONS(4187), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52045] = 2, + [78941] = 2, + ACTIONS(3989), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52054] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym_formal_parameters, + [78949] = 2, + ACTIONS(2001), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52065] = 3, - ACTIONS(2867), 1, - anon_sym_LBRACE, - STATE(347), 1, - sym_class_body, + [78957] = 2, + ACTIONS(4143), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52076] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + [78965] = 2, + ACTIONS(4189), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52087] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1511), 1, - sym_formal_parameters, + [78973] = 2, + ACTIONS(4191), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52098] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_formal_parameters, + [78981] = 2, + ACTIONS(2161), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52109] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(353), 1, - sym_statement_block, + [78989] = 2, + ACTIONS(2571), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52120] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(940), 1, - sym_statement_block, + [78997] = 2, + ACTIONS(4193), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52131] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1460), 1, - sym_formal_parameters, + [79005] = 2, + ACTIONS(4195), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52142] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + [79013] = 2, + ACTIONS(4197), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52153] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym_statement_block, + [79021] = 2, + ACTIONS(4199), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52164] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3174), 1, - anon_sym_GT, + [79029] = 2, + ACTIONS(4201), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52175] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [79037] = 2, + ACTIONS(4203), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52186] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1525), 1, - sym_formal_parameters, + [79045] = 2, + ACTIONS(2185), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52197] = 3, - ACTIONS(2724), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_class_body, + [79053] = 2, + ACTIONS(2425), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52208] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1526), 1, - sym_formal_parameters, + [79061] = 2, + ACTIONS(4070), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52219] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [79069] = 2, + ACTIONS(4205), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52230] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(924), 1, - sym_statement_block, + [79077] = 2, + ACTIONS(4207), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52241] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym_formal_parameters, + [79085] = 2, + ACTIONS(3935), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52252] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(647), 1, - sym_class_body, + [79093] = 2, + ACTIONS(4209), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52263] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(648), 1, - sym_statement_block, + [79101] = 2, + ACTIONS(4211), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52274] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_statement_block, + [79109] = 2, + ACTIONS(2419), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52285] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_statement_block, + [79117] = 2, + ACTIONS(2353), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52296] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_statement_block, + [79125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4213), 1, + sym_regex_pattern, + [79135] = 2, + ACTIONS(4215), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52307] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(618), 1, - sym_statement_block, + [79143] = 2, + ACTIONS(2435), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52318] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1420), 1, - sym_formal_parameters, + [79151] = 2, + ACTIONS(2641), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52329] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_statement_block, + [79159] = 2, + ACTIONS(2437), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52340] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(652), 1, - sym_class_body, + [79167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4217), 1, + anon_sym_SLASH2, + [79177] = 2, + ACTIONS(4219), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52351] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_statement_block, + [79185] = 2, + ACTIONS(4221), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52362] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym_statement_block, + [79193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4223), 1, + sym_regex_pattern, + [79203] = 2, + ACTIONS(4225), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52373] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, + [79211] = 2, + ACTIONS(4227), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52384] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + [79219] = 2, + ACTIONS(3675), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52395] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + [79227] = 2, + ACTIONS(4229), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52406] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [79235] = 2, + ACTIONS(4231), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52417] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_statement_block, + [79243] = 2, + ACTIONS(4233), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52428] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1527), 1, - sym_formal_parameters, + [79251] = 2, + ACTIONS(4235), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52439] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [79259] = 2, + ACTIONS(4237), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52450] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(653), 1, - sym_statement_block, + [79267] = 2, + ACTIONS(2443), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52461] = 3, - ACTIONS(3278), 1, - sym_identifier, - ACTIONS(3280), 1, - anon_sym_STAR, + [79275] = 2, + ACTIONS(4239), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52472] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_statement_block, + [79283] = 2, + ACTIONS(4173), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52483] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1563), 1, - sym_formal_parameters, + [79291] = 2, + ACTIONS(3951), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52494] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym_class_body, + [79299] = 2, + ACTIONS(4241), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52505] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(656), 1, - sym_statement_block, + [79307] = 2, + ACTIONS(2099), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52516] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_statement_block, + [79315] = 2, + ACTIONS(4243), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52527] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_formal_parameters, + [79323] = 2, + ACTIONS(4084), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52538] = 2, - ACTIONS(1805), 1, - anon_sym_RPAREN, + [79331] = 2, + ACTIONS(4245), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52546] = 2, - ACTIONS(3282), 1, - sym_identifier, + [79339] = 2, + ACTIONS(4247), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52554] = 2, - ACTIONS(1809), 1, - anon_sym_RPAREN, + [79347] = 2, + ACTIONS(4249), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52562] = 2, - ACTIONS(3284), 1, - sym_identifier, + [79355] = 2, + ACTIONS(4251), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52570] = 2, - ACTIONS(3286), 1, + [79363] = 2, + ACTIONS(4253), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52578] = 2, - ACTIONS(3288), 1, + [79371] = 2, + ACTIONS(4255), 1, anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52586] = 2, - ACTIONS(1819), 1, - anon_sym_SEMI, + [79379] = 2, + ACTIONS(2355), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52594] = 3, - ACTIONS(3), 1, + [79387] = 2, + ACTIONS(2313), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [79395] = 2, + ACTIONS(2445), 1, + anon_sym_SEMI, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3290), 1, - anon_sym_SLASH2, - [52604] = 2, - ACTIONS(3292), 1, - anon_sym_EQ_GT, + sym_comment, + [79403] = 2, + ACTIONS(4257), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52612] = 2, - ACTIONS(3090), 1, - anon_sym_GT, + [79411] = 2, + ACTIONS(2137), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52620] = 2, - ACTIONS(3294), 1, + [79419] = 2, + ACTIONS(2401), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52628] = 2, - ACTIONS(3296), 1, - ts_builtin_sym_end, + [79427] = 2, + ACTIONS(4259), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52636] = 2, - ACTIONS(3298), 1, - anon_sym_RPAREN, + [79435] = 2, + ACTIONS(2361), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52644] = 2, - ACTIONS(3300), 1, - anon_sym_as, + [79443] = 2, + ACTIONS(2431), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52652] = 2, - ACTIONS(3302), 1, - sym_identifier, + [79451] = 2, + ACTIONS(4261), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52660] = 3, - ACTIONS(3), 1, + [79459] = 2, + ACTIONS(2537), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [79467] = 2, + ACTIONS(3987), 1, + anon_sym_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3304), 1, - anon_sym_SLASH2, - [52670] = 2, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_comment, + [79475] = 2, + ACTIONS(4263), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52678] = 2, - ACTIONS(3230), 1, + [79483] = 2, + ACTIONS(4265), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52686] = 2, - ACTIONS(3306), 1, + [79491] = 2, + ACTIONS(4267), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52694] = 2, - ACTIONS(3308), 1, - anon_sym_RPAREN, + [79499] = 2, + ACTIONS(4269), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [79507] = 2, + ACTIONS(4271), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3310), 1, - sym_regex_pattern, - [52712] = 3, + sym_comment, + [79515] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3312), 1, + ACTIONS(4273), 1, anon_sym_SLASH2, - [52722] = 2, - ACTIONS(1562), 1, - anon_sym_in, + [79525] = 2, + ACTIONS(4275), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52730] = 2, - ACTIONS(1831), 1, - anon_sym_SEMI, + [79533] = 2, + ACTIONS(4277), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52738] = 2, - ACTIONS(1813), 1, - anon_sym_SEMI, + [79541] = 2, + ACTIONS(2343), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52746] = 2, - ACTIONS(3314), 1, - anon_sym_from, + [79549] = 2, + ACTIONS(2447), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52754] = 2, - ACTIONS(1773), 1, + [79557] = 2, + ACTIONS(2735), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52762] = 2, - ACTIONS(1817), 1, + [79565] = 2, + ACTIONS(4279), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52770] = 2, - ACTIONS(3316), 1, - anon_sym_from, + [79573] = 2, + ACTIONS(2056), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52778] = 2, - ACTIONS(3318), 1, - anon_sym_EQ, + [79581] = 2, + ACTIONS(2451), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52786] = 2, - ACTIONS(1811), 1, - anon_sym_RPAREN, + [79589] = 2, + ACTIONS(4281), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52794] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + [79597] = 2, + ACTIONS(4283), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52802] = 2, - ACTIONS(1833), 1, - anon_sym_SEMI, + [79605] = 2, + ACTIONS(4285), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52810] = 2, - ACTIONS(1632), 1, - anon_sym_in, + [79613] = 2, + ACTIONS(4287), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52818] = 2, - ACTIONS(2895), 1, - anon_sym_EQ, + [79621] = 2, + ACTIONS(4289), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52826] = 2, - ACTIONS(1787), 1, - anon_sym_RPAREN, + [79629] = 2, + ACTIONS(4291), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52834] = 2, - ACTIONS(1821), 1, - anon_sym_RPAREN, + [79637] = 2, + ACTIONS(2233), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52842] = 2, - ACTIONS(1839), 1, + [79645] = 2, + ACTIONS(2417), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52850] = 2, - ACTIONS(3320), 1, - anon_sym_while, + [79653] = 2, + ACTIONS(2453), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52858] = 2, - ACTIONS(3322), 1, - anon_sym_from, + [79661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4293), 1, + anon_sym_SLASH2, + [79671] = 2, + ACTIONS(2455), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52866] = 2, - ACTIONS(3324), 1, - anon_sym_EQ_GT, + [79679] = 2, + ACTIONS(3451), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52874] = 2, - ACTIONS(1843), 1, - anon_sym_RPAREN, + [79687] = 2, + ACTIONS(4295), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52882] = 2, - ACTIONS(1737), 1, + [79695] = 2, + ACTIONS(2459), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52890] = 2, - ACTIONS(1835), 1, + [79703] = 2, + ACTIONS(4297), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52898] = 2, - ACTIONS(3326), 1, - anon_sym_from, + [79711] = 2, + ACTIONS(1953), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52906] = 2, - ACTIONS(1783), 1, - anon_sym_RBRACK, + [79719] = 2, + ACTIONS(2461), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52914] = 2, - ACTIONS(3328), 1, + [79727] = 2, + ACTIONS(4299), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52922] = 2, - ACTIONS(3330), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [79735] = 3, + ACTIONS(3), 1, sym_comment, - [52930] = 2, - ACTIONS(2766), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4301), 1, + sym_regex_pattern, + [79745] = 2, + ACTIONS(4007), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52938] = 2, - ACTIONS(1785), 1, - anon_sym_RPAREN, + [79753] = 2, + ACTIONS(2413), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52946] = 2, - ACTIONS(3332), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, + [79761] = 3, + ACTIONS(3), 1, sym_comment, - [52954] = 2, - ACTIONS(3334), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4303), 1, + sym_regex_pattern, + [79771] = 2, + ACTIONS(4305), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52962] = 2, - ACTIONS(3336), 1, - sym_identifier, + [79779] = 2, + ACTIONS(4307), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52970] = 2, - ACTIONS(1807), 1, - anon_sym_COLON, + [79787] = 2, + ACTIONS(4309), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52978] = 2, - ACTIONS(1823), 1, - anon_sym_RPAREN, + [79795] = 2, + ACTIONS(4311), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52986] = 2, - ACTIONS(1741), 1, - anon_sym_RPAREN, + [79803] = 2, + ACTIONS(2441), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52994] = 2, - ACTIONS(3338), 1, + [79811] = 2, + ACTIONS(4313), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53002] = 2, - ACTIONS(1797), 1, - anon_sym_RBRACK, + [79819] = 2, + ACTIONS(2463), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53010] = 2, - ACTIONS(1825), 1, + [79827] = 2, + ACTIONS(2421), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53018] = 2, - ACTIONS(3340), 1, - sym_identifier, + [79835] = 2, + ACTIONS(2423), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53026] = 2, - ACTIONS(1799), 1, - anon_sym_RBRACE, + [79843] = 2, + ACTIONS(2607), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53034] = 2, - ACTIONS(3342), 1, - anon_sym_as, + [79851] = 2, + ACTIONS(4315), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53042] = 2, - ACTIONS(3344), 1, - anon_sym_target, + [79859] = 2, + ACTIONS(4317), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53050] = 2, - ACTIONS(1827), 1, - anon_sym_RPAREN, + [79867] = 2, + ACTIONS(4319), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53058] = 2, - ACTIONS(3174), 1, - anon_sym_GT, + [79875] = 2, + ACTIONS(4321), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53066] = 2, - ACTIONS(3346), 1, - anon_sym_function, + [79883] = 2, + ACTIONS(4323), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53074] = 2, - ACTIONS(1747), 1, - anon_sym_RPAREN, + [79891] = 2, + ACTIONS(4325), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53082] = 2, - ACTIONS(2275), 1, + [79899] = 2, + ACTIONS(4327), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53090] = 2, - ACTIONS(3348), 1, - anon_sym_from, + [79907] = 2, + ACTIONS(4329), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 2, - ACTIONS(3350), 1, - sym_identifier, + [79915] = 2, + ACTIONS(2319), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53106] = 2, - ACTIONS(3352), 1, - anon_sym_COLON, + [79923] = 2, + ACTIONS(2681), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53114] = 2, - ACTIONS(3344), 1, - anon_sym_meta, + [79931] = 2, + ACTIONS(4331), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53122] = 2, - ACTIONS(1837), 1, - anon_sym_RBRACE, + [79939] = 2, + ACTIONS(4249), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [79947] = 2, + ACTIONS(4333), 1, + anon_sym_EQ, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3354), 1, - sym_regex_pattern, - [53140] = 2, - ACTIONS(3356), 1, + sym_comment, + [79955] = 2, + ACTIONS(4335), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53148] = 2, - ACTIONS(1829), 1, - anon_sym_RBRACE, + [79963] = 2, + ACTIONS(4337), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53156] = 2, - ACTIONS(3358), 1, - anon_sym_meta, + [79971] = 2, + ACTIONS(4339), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53164] = 3, + [79979] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3360), 1, - sym_regex_pattern, - [53174] = 2, - ACTIONS(3362), 1, - anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_SLASH2, + [79989] = 2, + ACTIONS(2465), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53182] = 2, - ACTIONS(1803), 1, - anon_sym_RBRACK, + [79997] = 2, + ACTIONS(2415), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53190] = 2, - ACTIONS(1793), 1, - anon_sym_RBRACK, + [80005] = 2, + ACTIONS(4005), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53198] = 2, - ACTIONS(3364), 1, - anon_sym_EQ_GT, + [80013] = 2, + ACTIONS(4343), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53206] = 2, - ACTIONS(3366), 1, - anon_sym_from, + [80021] = 2, + ACTIONS(4257), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3368), 1, - sym_regex_pattern, - [53224] = 2, - ACTIONS(1871), 1, - anon_sym_in, + [80029] = 2, + ACTIONS(4345), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53232] = 2, - ACTIONS(1674), 1, + [80037] = 2, + ACTIONS(2267), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53240] = 2, - ACTIONS(3370), 1, - anon_sym_EQ_GT, + [80045] = 2, + ACTIONS(2409), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53248] = 2, - ACTIONS(3372), 1, - anon_sym_EQ_GT, + [80053] = 2, + ACTIONS(4347), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53256] = 2, - ACTIONS(3374), 1, + [80061] = 2, + ACTIONS(4349), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53264] = 2, - ACTIONS(3376), 1, + [80069] = 2, + ACTIONS(4351), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53272] = 2, - ACTIONS(3378), 1, + [80077] = 2, + ACTIONS(4353), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53280] = 2, - ACTIONS(3144), 1, - anon_sym_GT, + [80085] = 2, + ACTIONS(2467), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53288] = 2, - ACTIONS(3380), 1, - anon_sym_EQ_GT, + [80093] = 2, + ACTIONS(2818), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53296] = 2, - ACTIONS(3382), 1, - anon_sym_EQ, + [80101] = 2, + ACTIONS(2225), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53304] = 2, - ACTIONS(3384), 1, - anon_sym_EQ_GT, + [80109] = 2, + ACTIONS(2301), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53312] = 2, - ACTIONS(3386), 1, - anon_sym_EQ_GT, + [80117] = 2, + ACTIONS(2411), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53320] = 2, - ACTIONS(3068), 1, - anon_sym_RBRACE, + [80125] = 2, + ACTIONS(4355), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53328] = 2, - ACTIONS(3358), 1, - anon_sym_target, + [80133] = 2, + ACTIONS(4357), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53336] = 2, - ACTIONS(3234), 1, - anon_sym_from, + [80141] = 2, + ACTIONS(2429), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3388), 1, - anon_sym_SLASH2, - [53354] = 2, - ACTIONS(3390), 1, - anon_sym_from, + [80149] = 2, + ACTIONS(3947), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53362] = 2, - ACTIONS(3392), 1, - anon_sym_EQ_GT, + [80157] = 2, + ACTIONS(2469), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53370] = 2, - ACTIONS(1789), 1, - anon_sym_SEMI, + [80165] = 2, + ACTIONS(2433), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53378] = 2, - ACTIONS(3394), 1, - anon_sym_EQ_GT, + [80173] = 2, + ACTIONS(2503), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53386] = 2, - ACTIONS(1845), 1, - anon_sym_SEMI, + [80181] = 2, + ACTIONS(2385), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53394] = 2, - ACTIONS(3396), 1, + [80189] = 2, + ACTIONS(4359), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53402] = 2, - ACTIONS(3103), 1, - anon_sym_GT, + [80197] = 2, + ACTIONS(2471), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [80205] = 2, + ACTIONS(4361), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(326)] = 0, - [SMALL_STATE(327)] = 71, - [SMALL_STATE(328)] = 142, - [SMALL_STATE(329)] = 233, - [SMALL_STATE(330)] = 322, - [SMALL_STATE(331)] = 412, - [SMALL_STATE(332)] = 498, - [SMALL_STATE(333)] = 584, - [SMALL_STATE(334)] = 658, - [SMALL_STATE(335)] = 744, - [SMALL_STATE(336)] = 815, - [SMALL_STATE(337)] = 886, - [SMALL_STATE(338)] = 955, - [SMALL_STATE(339)] = 1026, - [SMALL_STATE(340)] = 1095, - [SMALL_STATE(341)] = 1164, - [SMALL_STATE(342)] = 1235, - [SMALL_STATE(343)] = 1304, - [SMALL_STATE(344)] = 1391, - [SMALL_STATE(345)] = 1480, - [SMALL_STATE(346)] = 1553, - [SMALL_STATE(347)] = 1622, - [SMALL_STATE(348)] = 1693, - [SMALL_STATE(349)] = 1762, - [SMALL_STATE(350)] = 1833, - [SMALL_STATE(351)] = 1904, - [SMALL_STATE(352)] = 1975, - [SMALL_STATE(353)] = 2062, - [SMALL_STATE(354)] = 2133, - [SMALL_STATE(355)] = 2204, - [SMALL_STATE(356)] = 2273, - [SMALL_STATE(357)] = 2358, - [SMALL_STATE(358)] = 2443, - [SMALL_STATE(359)] = 2514, - [SMALL_STATE(360)] = 2583, - [SMALL_STATE(361)] = 2651, - [SMALL_STATE(362)] = 2719, - [SMALL_STATE(363)] = 2787, - [SMALL_STATE(364)] = 2855, - [SMALL_STATE(365)] = 2923, - [SMALL_STATE(366)] = 2991, - [SMALL_STATE(367)] = 3059, - [SMALL_STATE(368)] = 3127, - [SMALL_STATE(369)] = 3195, - [SMALL_STATE(370)] = 3263, - [SMALL_STATE(371)] = 3331, - [SMALL_STATE(372)] = 3399, - [SMALL_STATE(373)] = 3467, - [SMALL_STATE(374)] = 3535, - [SMALL_STATE(375)] = 3603, - [SMALL_STATE(376)] = 3671, - [SMALL_STATE(377)] = 3739, - [SMALL_STATE(378)] = 3807, - [SMALL_STATE(379)] = 3875, - [SMALL_STATE(380)] = 3943, - [SMALL_STATE(381)] = 4011, - [SMALL_STATE(382)] = 4079, - [SMALL_STATE(383)] = 4147, - [SMALL_STATE(384)] = 4215, - [SMALL_STATE(385)] = 4283, - [SMALL_STATE(386)] = 4351, - [SMALL_STATE(387)] = 4419, - [SMALL_STATE(388)] = 4487, - [SMALL_STATE(389)] = 4555, - [SMALL_STATE(390)] = 4623, - [SMALL_STATE(391)] = 4691, - [SMALL_STATE(392)] = 4759, - [SMALL_STATE(393)] = 4827, - [SMALL_STATE(394)] = 4895, - [SMALL_STATE(395)] = 4963, - [SMALL_STATE(396)] = 5031, - [SMALL_STATE(397)] = 5099, - [SMALL_STATE(398)] = 5167, - [SMALL_STATE(399)] = 5235, - [SMALL_STATE(400)] = 5303, - [SMALL_STATE(401)] = 5371, - [SMALL_STATE(402)] = 5439, - [SMALL_STATE(403)] = 5507, - [SMALL_STATE(404)] = 5575, - [SMALL_STATE(405)] = 5643, - [SMALL_STATE(406)] = 5711, - [SMALL_STATE(407)] = 5779, - [SMALL_STATE(408)] = 5847, - [SMALL_STATE(409)] = 5915, - [SMALL_STATE(410)] = 5983, - [SMALL_STATE(411)] = 6071, - [SMALL_STATE(412)] = 6139, - [SMALL_STATE(413)] = 6207, - [SMALL_STATE(414)] = 6275, - [SMALL_STATE(415)] = 6343, - [SMALL_STATE(416)] = 6411, - [SMALL_STATE(417)] = 6479, - [SMALL_STATE(418)] = 6547, - [SMALL_STATE(419)] = 6615, - [SMALL_STATE(420)] = 6683, - [SMALL_STATE(421)] = 6751, - [SMALL_STATE(422)] = 6819, - [SMALL_STATE(423)] = 6887, - [SMALL_STATE(424)] = 6955, - [SMALL_STATE(425)] = 7023, - [SMALL_STATE(426)] = 7091, - [SMALL_STATE(427)] = 7174, - [SMALL_STATE(428)] = 7240, - [SMALL_STATE(429)] = 7306, - [SMALL_STATE(430)] = 7372, - [SMALL_STATE(431)] = 7442, - [SMALL_STATE(432)] = 7508, - [SMALL_STATE(433)] = 7590, - [SMALL_STATE(434)] = 7656, - [SMALL_STATE(435)] = 7738, - [SMALL_STATE(436)] = 7804, - [SMALL_STATE(437)] = 7870, - [SMALL_STATE(438)] = 7952, - [SMALL_STATE(439)] = 8023, - [SMALL_STATE(440)] = 8094, - [SMALL_STATE(441)] = 8165, - [SMALL_STATE(442)] = 8236, - [SMALL_STATE(443)] = 8319, - [SMALL_STATE(444)] = 8387, - [SMALL_STATE(445)] = 8450, - [SMALL_STATE(446)] = 8513, - [SMALL_STATE(447)] = 8576, - [SMALL_STATE(448)] = 8645, - [SMALL_STATE(449)] = 8708, - [SMALL_STATE(450)] = 8777, - [SMALL_STATE(451)] = 8840, - [SMALL_STATE(452)] = 8909, - [SMALL_STATE(453)] = 8980, - [SMALL_STATE(454)] = 9051, - [SMALL_STATE(455)] = 9120, - [SMALL_STATE(456)] = 9191, - [SMALL_STATE(457)] = 9262, - [SMALL_STATE(458)] = 9325, - [SMALL_STATE(459)] = 9394, - [SMALL_STATE(460)] = 9457, - [SMALL_STATE(461)] = 9526, - [SMALL_STATE(462)] = 9593, - [SMALL_STATE(463)] = 9656, - [SMALL_STATE(464)] = 9719, - [SMALL_STATE(465)] = 9790, - [SMALL_STATE(466)] = 9853, - [SMALL_STATE(467)] = 9924, - [SMALL_STATE(468)] = 9995, - [SMALL_STATE(469)] = 10066, - [SMALL_STATE(470)] = 10137, - [SMALL_STATE(471)] = 10206, - [SMALL_STATE(472)] = 10275, - [SMALL_STATE(473)] = 10338, - [SMALL_STATE(474)] = 10401, - [SMALL_STATE(475)] = 10464, - [SMALL_STATE(476)] = 10527, - [SMALL_STATE(477)] = 10590, - [SMALL_STATE(478)] = 10653, - [SMALL_STATE(479)] = 10724, - [SMALL_STATE(480)] = 10794, - [SMALL_STATE(481)] = 10866, - [SMALL_STATE(482)] = 10932, - [SMALL_STATE(483)] = 11002, - [SMALL_STATE(484)] = 11070, - [SMALL_STATE(485)] = 11142, - [SMALL_STATE(486)] = 11210, - [SMALL_STATE(487)] = 11278, - [SMALL_STATE(488)] = 11344, - [SMALL_STATE(489)] = 11415, - [SMALL_STATE(490)] = 11484, - [SMALL_STATE(491)] = 11551, - [SMALL_STATE(492)] = 11618, - [SMALL_STATE(493)] = 11689, - [SMALL_STATE(494)] = 11756, - [SMALL_STATE(495)] = 11826, - [SMALL_STATE(496)] = 11892, - [SMALL_STATE(497)] = 11958, - [SMALL_STATE(498)] = 12028, - [SMALL_STATE(499)] = 12096, - [SMALL_STATE(500)] = 12162, - [SMALL_STATE(501)] = 12228, - [SMALL_STATE(502)] = 12295, - [SMALL_STATE(503)] = 12358, - [SMALL_STATE(504)] = 12424, - [SMALL_STATE(505)] = 12484, - [SMALL_STATE(506)] = 12540, - [SMALL_STATE(507)] = 12593, - [SMALL_STATE(508)] = 12654, - [SMALL_STATE(509)] = 12707, - [SMALL_STATE(510)] = 12768, - [SMALL_STATE(511)] = 12831, - [SMALL_STATE(512)] = 12884, - [SMALL_STATE(513)] = 12939, - [SMALL_STATE(514)] = 13002, - [SMALL_STATE(515)] = 13054, - [SMALL_STATE(516)] = 13104, - [SMALL_STATE(517)] = 13154, - [SMALL_STATE(518)] = 13204, - [SMALL_STATE(519)] = 13254, - [SMALL_STATE(520)] = 13304, - [SMALL_STATE(521)] = 13354, - [SMALL_STATE(522)] = 13404, - [SMALL_STATE(523)] = 13454, - [SMALL_STATE(524)] = 13504, - [SMALL_STATE(525)] = 13554, - [SMALL_STATE(526)] = 13608, - [SMALL_STATE(527)] = 13658, - [SMALL_STATE(528)] = 13708, - [SMALL_STATE(529)] = 13758, - [SMALL_STATE(530)] = 13808, - [SMALL_STATE(531)] = 13858, - [SMALL_STATE(532)] = 13908, - [SMALL_STATE(533)] = 13958, - [SMALL_STATE(534)] = 14012, - [SMALL_STATE(535)] = 14062, - [SMALL_STATE(536)] = 14112, - [SMALL_STATE(537)] = 14162, - [SMALL_STATE(538)] = 14212, - [SMALL_STATE(539)] = 14262, - [SMALL_STATE(540)] = 14312, - [SMALL_STATE(541)] = 14362, - [SMALL_STATE(542)] = 14412, - [SMALL_STATE(543)] = 14466, - [SMALL_STATE(544)] = 14516, - [SMALL_STATE(545)] = 14566, - [SMALL_STATE(546)] = 14616, - [SMALL_STATE(547)] = 14666, - [SMALL_STATE(548)] = 14716, - [SMALL_STATE(549)] = 14766, - [SMALL_STATE(550)] = 14816, - [SMALL_STATE(551)] = 14866, - [SMALL_STATE(552)] = 14916, - [SMALL_STATE(553)] = 14966, - [SMALL_STATE(554)] = 15016, - [SMALL_STATE(555)] = 15066, - [SMALL_STATE(556)] = 15116, - [SMALL_STATE(557)] = 15166, - [SMALL_STATE(558)] = 15216, - [SMALL_STATE(559)] = 15266, - [SMALL_STATE(560)] = 15316, - [SMALL_STATE(561)] = 15366, - [SMALL_STATE(562)] = 15416, - [SMALL_STATE(563)] = 15466, - [SMALL_STATE(564)] = 15516, - [SMALL_STATE(565)] = 15566, - [SMALL_STATE(566)] = 15616, - [SMALL_STATE(567)] = 15666, - [SMALL_STATE(568)] = 15716, - [SMALL_STATE(569)] = 15766, - [SMALL_STATE(570)] = 15816, - [SMALL_STATE(571)] = 15866, - [SMALL_STATE(572)] = 15916, - [SMALL_STATE(573)] = 15966, - [SMALL_STATE(574)] = 16016, - [SMALL_STATE(575)] = 16097, - [SMALL_STATE(576)] = 16190, - [SMALL_STATE(577)] = 16283, - [SMALL_STATE(578)] = 16334, - [SMALL_STATE(579)] = 16427, - [SMALL_STATE(580)] = 16490, - [SMALL_STATE(581)] = 16583, - [SMALL_STATE(582)] = 16676, - [SMALL_STATE(583)] = 16769, - [SMALL_STATE(584)] = 16862, - [SMALL_STATE(585)] = 16919, - [SMALL_STATE(586)] = 17012, - [SMALL_STATE(587)] = 17085, - [SMALL_STATE(588)] = 17178, - [SMALL_STATE(589)] = 17241, - [SMALL_STATE(590)] = 17334, - [SMALL_STATE(591)] = 17419, - [SMALL_STATE(592)] = 17506, - [SMALL_STATE(593)] = 17575, - [SMALL_STATE(594)] = 17658, - [SMALL_STATE(595)] = 17743, - [SMALL_STATE(596)] = 17810, - [SMALL_STATE(597)] = 17903, - [SMALL_STATE(598)] = 17954, - [SMALL_STATE(599)] = 18017, - [SMALL_STATE(600)] = 18068, - [SMALL_STATE(601)] = 18145, - [SMALL_STATE(602)] = 18196, - [SMALL_STATE(603)] = 18285, - [SMALL_STATE(604)] = 18378, - [SMALL_STATE(605)] = 18430, - [SMALL_STATE(606)] = 18484, - [SMALL_STATE(607)] = 18534, - [SMALL_STATE(608)] = 18626, - [SMALL_STATE(609)] = 18674, - [SMALL_STATE(610)] = 18734, - [SMALL_STATE(611)] = 18784, - [SMALL_STATE(612)] = 18842, - [SMALL_STATE(613)] = 18892, - [SMALL_STATE(614)] = 18942, - [SMALL_STATE(615)] = 19000, - [SMALL_STATE(616)] = 19052, - [SMALL_STATE(617)] = 19100, - [SMALL_STATE(618)] = 19160, - [SMALL_STATE(619)] = 19211, - [SMALL_STATE(620)] = 19258, - [SMALL_STATE(621)] = 19305, - [SMALL_STATE(622)] = 19352, - [SMALL_STATE(623)] = 19399, - [SMALL_STATE(624)] = 19490, - [SMALL_STATE(625)] = 19581, - [SMALL_STATE(626)] = 19628, - [SMALL_STATE(627)] = 19675, - [SMALL_STATE(628)] = 19722, - [SMALL_STATE(629)] = 19769, - [SMALL_STATE(630)] = 19860, - [SMALL_STATE(631)] = 19907, - [SMALL_STATE(632)] = 19998, - [SMALL_STATE(633)] = 20049, - [SMALL_STATE(634)] = 20096, - [SMALL_STATE(635)] = 20143, - [SMALL_STATE(636)] = 20190, - [SMALL_STATE(637)] = 20237, - [SMALL_STATE(638)] = 20284, - [SMALL_STATE(639)] = 20335, - [SMALL_STATE(640)] = 20382, - [SMALL_STATE(641)] = 20429, - [SMALL_STATE(642)] = 20476, - [SMALL_STATE(643)] = 20527, - [SMALL_STATE(644)] = 20576, - [SMALL_STATE(645)] = 20623, - [SMALL_STATE(646)] = 20674, - [SMALL_STATE(647)] = 20725, - [SMALL_STATE(648)] = 20772, - [SMALL_STATE(649)] = 20819, - [SMALL_STATE(650)] = 20866, - [SMALL_STATE(651)] = 20917, - [SMALL_STATE(652)] = 20964, - [SMALL_STATE(653)] = 21015, - [SMALL_STATE(654)] = 21062, - [SMALL_STATE(655)] = 21109, - [SMALL_STATE(656)] = 21156, - [SMALL_STATE(657)] = 21207, - [SMALL_STATE(658)] = 21254, - [SMALL_STATE(659)] = 21301, - [SMALL_STATE(660)] = 21348, - [SMALL_STATE(661)] = 21395, - [SMALL_STATE(662)] = 21446, - [SMALL_STATE(663)] = 21493, - [SMALL_STATE(664)] = 21540, - [SMALL_STATE(665)] = 21587, - [SMALL_STATE(666)] = 21636, - [SMALL_STATE(667)] = 21727, - [SMALL_STATE(668)] = 21778, - [SMALL_STATE(669)] = 21829, - [SMALL_STATE(670)] = 21880, - [SMALL_STATE(671)] = 21927, - [SMALL_STATE(672)] = 21978, - [SMALL_STATE(673)] = 22025, - [SMALL_STATE(674)] = 22116, - [SMALL_STATE(675)] = 22163, - [SMALL_STATE(676)] = 22210, - [SMALL_STATE(677)] = 22257, - [SMALL_STATE(678)] = 22304, - [SMALL_STATE(679)] = 22351, - [SMALL_STATE(680)] = 22398, - [SMALL_STATE(681)] = 22445, - [SMALL_STATE(682)] = 22492, - [SMALL_STATE(683)] = 22541, - [SMALL_STATE(684)] = 22588, - [SMALL_STATE(685)] = 22679, - [SMALL_STATE(686)] = 22726, - [SMALL_STATE(687)] = 22817, - [SMALL_STATE(688)] = 22888, - [SMALL_STATE(689)] = 22935, - [SMALL_STATE(690)] = 23026, - [SMALL_STATE(691)] = 23117, - [SMALL_STATE(692)] = 23178, - [SMALL_STATE(693)] = 23269, - [SMALL_STATE(694)] = 23360, - [SMALL_STATE(695)] = 23451, - [SMALL_STATE(696)] = 23522, - [SMALL_STATE(697)] = 23583, - [SMALL_STATE(698)] = 23666, - [SMALL_STATE(699)] = 23749, - [SMALL_STATE(700)] = 23834, - [SMALL_STATE(701)] = 23901, - [SMALL_STATE(702)] = 23980, - [SMALL_STATE(703)] = 24061, - [SMALL_STATE(704)] = 24144, - [SMALL_STATE(705)] = 24209, - [SMALL_STATE(706)] = 24270, - [SMALL_STATE(707)] = 24345, - [SMALL_STATE(708)] = 24432, - [SMALL_STATE(709)] = 24523, - [SMALL_STATE(710)] = 24614, - [SMALL_STATE(711)] = 24699, - [SMALL_STATE(712)] = 24766, - [SMALL_STATE(713)] = 24857, - [SMALL_STATE(714)] = 24948, - [SMALL_STATE(715)] = 25039, - [SMALL_STATE(716)] = 25118, - [SMALL_STATE(717)] = 25199, - [SMALL_STATE(718)] = 25282, - [SMALL_STATE(719)] = 25373, - [SMALL_STATE(720)] = 25438, - [SMALL_STATE(721)] = 25499, - [SMALL_STATE(722)] = 25574, - [SMALL_STATE(723)] = 25661, - [SMALL_STATE(724)] = 25708, - [SMALL_STATE(725)] = 25755, - [SMALL_STATE(726)] = 25804, - [SMALL_STATE(727)] = 25851, - [SMALL_STATE(728)] = 25942, - [SMALL_STATE(729)] = 26033, - [SMALL_STATE(730)] = 26080, - [SMALL_STATE(731)] = 26171, - [SMALL_STATE(732)] = 26218, - [SMALL_STATE(733)] = 26309, - [SMALL_STATE(734)] = 26400, - [SMALL_STATE(735)] = 26494, - [SMALL_STATE(736)] = 26544, - [SMALL_STATE(737)] = 26636, - [SMALL_STATE(738)] = 26726, - [SMALL_STATE(739)] = 26820, - [SMALL_STATE(740)] = 26910, - [SMALL_STATE(741)] = 26962, - [SMALL_STATE(742)] = 27014, - [SMALL_STATE(743)] = 27066, - [SMALL_STATE(744)] = 27116, - [SMALL_STATE(745)] = 27168, - [SMALL_STATE(746)] = 27262, - [SMALL_STATE(747)] = 27356, - [SMALL_STATE(748)] = 27450, - [SMALL_STATE(749)] = 27544, - [SMALL_STATE(750)] = 27594, - [SMALL_STATE(751)] = 27687, - [SMALL_STATE(752)] = 27780, - [SMALL_STATE(753)] = 27873, - [SMALL_STATE(754)] = 27966, - [SMALL_STATE(755)] = 28059, - [SMALL_STATE(756)] = 28152, - [SMALL_STATE(757)] = 28245, - [SMALL_STATE(758)] = 28334, - [SMALL_STATE(759)] = 28423, - [SMALL_STATE(760)] = 28474, - [SMALL_STATE(761)] = 28567, - [SMALL_STATE(762)] = 28618, - [SMALL_STATE(763)] = 28669, - [SMALL_STATE(764)] = 28762, - [SMALL_STATE(765)] = 28851, - [SMALL_STATE(766)] = 28944, - [SMALL_STATE(767)] = 29037, - [SMALL_STATE(768)] = 29130, - [SMALL_STATE(769)] = 29223, - [SMALL_STATE(770)] = 29316, - [SMALL_STATE(771)] = 29409, - [SMALL_STATE(772)] = 29502, - [SMALL_STATE(773)] = 29595, - [SMALL_STATE(774)] = 29688, - [SMALL_STATE(775)] = 29781, - [SMALL_STATE(776)] = 29874, - [SMALL_STATE(777)] = 29967, - [SMALL_STATE(778)] = 30060, - [SMALL_STATE(779)] = 30153, - [SMALL_STATE(780)] = 30242, - [SMALL_STATE(781)] = 30335, - [SMALL_STATE(782)] = 30424, - [SMALL_STATE(783)] = 30513, - [SMALL_STATE(784)] = 30606, - [SMALL_STATE(785)] = 30699, - [SMALL_STATE(786)] = 30788, - [SMALL_STATE(787)] = 30877, - [SMALL_STATE(788)] = 30966, - [SMALL_STATE(789)] = 31059, - [SMALL_STATE(790)] = 31152, - [SMALL_STATE(791)] = 31221, - [SMALL_STATE(792)] = 31314, - [SMALL_STATE(793)] = 31373, - [SMALL_STATE(794)] = 31454, - [SMALL_STATE(795)] = 31537, - [SMALL_STATE(796)] = 31602, - [SMALL_STATE(797)] = 31691, - [SMALL_STATE(798)] = 31784, - [SMALL_STATE(799)] = 31861, - [SMALL_STATE(800)] = 31940, - [SMALL_STATE(801)] = 32021, - [SMALL_STATE(802)] = 32084, - [SMALL_STATE(803)] = 32143, - [SMALL_STATE(804)] = 32236, - [SMALL_STATE(805)] = 32309, - [SMALL_STATE(806)] = 32402, - [SMALL_STATE(807)] = 32487, - [SMALL_STATE(808)] = 32580, - [SMALL_STATE(809)] = 32669, - [SMALL_STATE(810)] = 32762, - [SMALL_STATE(811)] = 32851, - [SMALL_STATE(812)] = 32944, - [SMALL_STATE(813)] = 33037, - [SMALL_STATE(814)] = 33130, - [SMALL_STATE(815)] = 33219, - [SMALL_STATE(816)] = 33308, - [SMALL_STATE(817)] = 33359, - [SMALL_STATE(818)] = 33452, - [SMALL_STATE(819)] = 33541, - [SMALL_STATE(820)] = 33629, - [SMALL_STATE(821)] = 33675, - [SMALL_STATE(822)] = 33763, - [SMALL_STATE(823)] = 33809, - [SMALL_STATE(824)] = 33895, - [SMALL_STATE(825)] = 33981, - [SMALL_STATE(826)] = 34069, - [SMALL_STATE(827)] = 34155, - [SMALL_STATE(828)] = 34241, - [SMALL_STATE(829)] = 34327, - [SMALL_STATE(830)] = 34413, - [SMALL_STATE(831)] = 34463, - [SMALL_STATE(832)] = 34553, - [SMALL_STATE(833)] = 34641, - [SMALL_STATE(834)] = 34729, - [SMALL_STATE(835)] = 34817, - [SMALL_STATE(836)] = 34905, - [SMALL_STATE(837)] = 34993, - [SMALL_STATE(838)] = 35081, - [SMALL_STATE(839)] = 35169, - [SMALL_STATE(840)] = 35237, - [SMALL_STATE(841)] = 35295, - [SMALL_STATE(842)] = 35375, - [SMALL_STATE(843)] = 35457, - [SMALL_STATE(844)] = 35521, - [SMALL_STATE(845)] = 35597, - [SMALL_STATE(846)] = 35675, - [SMALL_STATE(847)] = 35755, - [SMALL_STATE(848)] = 35817, - [SMALL_STATE(849)] = 35875, - [SMALL_STATE(850)] = 35947, - [SMALL_STATE(851)] = 36031, - [SMALL_STATE(852)] = 36119, - [SMALL_STATE(853)] = 36207, - [SMALL_STATE(854)] = 36295, - [SMALL_STATE(855)] = 36383, - [SMALL_STATE(856)] = 36471, - [SMALL_STATE(857)] = 36559, - [SMALL_STATE(858)] = 36646, - [SMALL_STATE(859)] = 36733, - [SMALL_STATE(860)] = 36820, - [SMALL_STATE(861)] = 36907, - [SMALL_STATE(862)] = 36994, - [SMALL_STATE(863)] = 37081, - [SMALL_STATE(864)] = 37170, - [SMALL_STATE(865)] = 37257, - [SMALL_STATE(866)] = 37344, - [SMALL_STATE(867)] = 37422, - [SMALL_STATE(868)] = 37506, - [SMALL_STATE(869)] = 37590, - [SMALL_STATE(870)] = 37660, - [SMALL_STATE(871)] = 37731, - [SMALL_STATE(872)] = 37802, - [SMALL_STATE(873)] = 37873, - [SMALL_STATE(874)] = 37944, - [SMALL_STATE(875)] = 38015, - [SMALL_STATE(876)] = 38080, - [SMALL_STATE(877)] = 38151, - [SMALL_STATE(878)] = 38208, - [SMALL_STATE(879)] = 38265, - [SMALL_STATE(880)] = 38336, - [SMALL_STATE(881)] = 38388, - [SMALL_STATE(882)] = 38444, - [SMALL_STATE(883)] = 38502, - [SMALL_STATE(884)] = 38558, - [SMALL_STATE(885)] = 38616, - [SMALL_STATE(886)] = 38672, - [SMALL_STATE(887)] = 38730, - [SMALL_STATE(888)] = 38788, - [SMALL_STATE(889)] = 38846, - [SMALL_STATE(890)] = 38902, - [SMALL_STATE(891)] = 38960, - [SMALL_STATE(892)] = 39016, - [SMALL_STATE(893)] = 39072, - [SMALL_STATE(894)] = 39123, - [SMALL_STATE(895)] = 39174, - [SMALL_STATE(896)] = 39227, - [SMALL_STATE(897)] = 39278, - [SMALL_STATE(898)] = 39329, - [SMALL_STATE(899)] = 39380, - [SMALL_STATE(900)] = 39431, - [SMALL_STATE(901)] = 39481, - [SMALL_STATE(902)] = 39531, - [SMALL_STATE(903)] = 39583, - [SMALL_STATE(904)] = 39643, - [SMALL_STATE(905)] = 39691, - [SMALL_STATE(906)] = 39736, - [SMALL_STATE(907)] = 39779, - [SMALL_STATE(908)] = 39824, - [SMALL_STATE(909)] = 39867, - [SMALL_STATE(910)] = 39914, - [SMALL_STATE(911)] = 39969, - [SMALL_STATE(912)] = 40014, - [SMALL_STATE(913)] = 40057, - [SMALL_STATE(914)] = 40104, - [SMALL_STATE(915)] = 40149, - [SMALL_STATE(916)] = 40204, - [SMALL_STATE(917)] = 40242, - [SMALL_STATE(918)] = 40276, - [SMALL_STATE(919)] = 40314, - [SMALL_STATE(920)] = 40352, - [SMALL_STATE(921)] = 40390, - [SMALL_STATE(922)] = 40428, - [SMALL_STATE(923)] = 40468, - [SMALL_STATE(924)] = 40506, - [SMALL_STATE(925)] = 40533, - [SMALL_STATE(926)] = 40560, - [SMALL_STATE(927)] = 40587, - [SMALL_STATE(928)] = 40614, - [SMALL_STATE(929)] = 40641, - [SMALL_STATE(930)] = 40668, - [SMALL_STATE(931)] = 40695, - [SMALL_STATE(932)] = 40722, - [SMALL_STATE(933)] = 40749, - [SMALL_STATE(934)] = 40776, - [SMALL_STATE(935)] = 40803, - [SMALL_STATE(936)] = 40830, - [SMALL_STATE(937)] = 40857, - [SMALL_STATE(938)] = 40884, - [SMALL_STATE(939)] = 40911, - [SMALL_STATE(940)] = 40938, - [SMALL_STATE(941)] = 40965, - [SMALL_STATE(942)] = 40992, - [SMALL_STATE(943)] = 41019, - [SMALL_STATE(944)] = 41046, - [SMALL_STATE(945)] = 41079, - [SMALL_STATE(946)] = 41106, - [SMALL_STATE(947)] = 41133, - [SMALL_STATE(948)] = 41160, - [SMALL_STATE(949)] = 41189, - [SMALL_STATE(950)] = 41216, - [SMALL_STATE(951)] = 41243, - [SMALL_STATE(952)] = 41270, - [SMALL_STATE(953)] = 41297, - [SMALL_STATE(954)] = 41326, - [SMALL_STATE(955)] = 41353, - [SMALL_STATE(956)] = 41380, - [SMALL_STATE(957)] = 41406, - [SMALL_STATE(958)] = 41432, - [SMALL_STATE(959)] = 41460, - [SMALL_STATE(960)] = 41498, - [SMALL_STATE(961)] = 41540, - [SMALL_STATE(962)] = 41580, - [SMALL_STATE(963)] = 41606, - [SMALL_STATE(964)] = 41632, - [SMALL_STATE(965)] = 41678, - [SMALL_STATE(966)] = 41720, - [SMALL_STATE(967)] = 41764, - [SMALL_STATE(968)] = 41804, - [SMALL_STATE(969)] = 41846, - [SMALL_STATE(970)] = 41872, - [SMALL_STATE(971)] = 41914, - [SMALL_STATE(972)] = 41940, - [SMALL_STATE(973)] = 41975, - [SMALL_STATE(974)] = 42010, - [SMALL_STATE(975)] = 42045, - [SMALL_STATE(976)] = 42080, - [SMALL_STATE(977)] = 42105, - [SMALL_STATE(978)] = 42140, - [SMALL_STATE(979)] = 42181, - [SMALL_STATE(980)] = 42216, - [SMALL_STATE(981)] = 42255, - [SMALL_STATE(982)] = 42298, - [SMALL_STATE(983)] = 42333, - [SMALL_STATE(984)] = 42368, - [SMALL_STATE(985)] = 42409, - [SMALL_STATE(986)] = 42444, - [SMALL_STATE(987)] = 42479, - [SMALL_STATE(988)] = 42514, - [SMALL_STATE(989)] = 42553, - [SMALL_STATE(990)] = 42588, - [SMALL_STATE(991)] = 42623, - [SMALL_STATE(992)] = 42658, - [SMALL_STATE(993)] = 42693, - [SMALL_STATE(994)] = 42728, - [SMALL_STATE(995)] = 42763, - [SMALL_STATE(996)] = 42798, - [SMALL_STATE(997)] = 42833, - [SMALL_STATE(998)] = 42868, - [SMALL_STATE(999)] = 42903, - [SMALL_STATE(1000)] = 42938, - [SMALL_STATE(1001)] = 42963, - [SMALL_STATE(1002)] = 42988, - [SMALL_STATE(1003)] = 43013, - [SMALL_STATE(1004)] = 43056, - [SMALL_STATE(1005)] = 43081, - [SMALL_STATE(1006)] = 43116, - [SMALL_STATE(1007)] = 43141, - [SMALL_STATE(1008)] = 43176, - [SMALL_STATE(1009)] = 43208, - [SMALL_STATE(1010)] = 43240, - [SMALL_STATE(1011)] = 43272, - [SMALL_STATE(1012)] = 43304, - [SMALL_STATE(1013)] = 43336, - [SMALL_STATE(1014)] = 43368, - [SMALL_STATE(1015)] = 43400, - [SMALL_STATE(1016)] = 43422, - [SMALL_STATE(1017)] = 43454, - [SMALL_STATE(1018)] = 43486, - [SMALL_STATE(1019)] = 43508, - [SMALL_STATE(1020)] = 43530, - [SMALL_STATE(1021)] = 43562, - [SMALL_STATE(1022)] = 43594, - [SMALL_STATE(1023)] = 43626, - [SMALL_STATE(1024)] = 43648, - [SMALL_STATE(1025)] = 43680, - [SMALL_STATE(1026)] = 43712, - [SMALL_STATE(1027)] = 43744, - [SMALL_STATE(1028)] = 43776, - [SMALL_STATE(1029)] = 43808, - [SMALL_STATE(1030)] = 43830, - [SMALL_STATE(1031)] = 43862, - [SMALL_STATE(1032)] = 43899, - [SMALL_STATE(1033)] = 43929, - [SMALL_STATE(1034)] = 43959, - [SMALL_STATE(1035)] = 43995, - [SMALL_STATE(1036)] = 44025, - [SMALL_STATE(1037)] = 44061, - [SMALL_STATE(1038)] = 44091, - [SMALL_STATE(1039)] = 44121, - [SMALL_STATE(1040)] = 44151, - [SMALL_STATE(1041)] = 44187, - [SMALL_STATE(1042)] = 44217, - [SMALL_STATE(1043)] = 44253, - [SMALL_STATE(1044)] = 44283, - [SMALL_STATE(1045)] = 44316, - [SMALL_STATE(1046)] = 44343, - [SMALL_STATE(1047)] = 44376, - [SMALL_STATE(1048)] = 44409, - [SMALL_STATE(1049)] = 44442, - [SMALL_STATE(1050)] = 44475, - [SMALL_STATE(1051)] = 44508, - [SMALL_STATE(1052)] = 44541, - [SMALL_STATE(1053)] = 44574, - [SMALL_STATE(1054)] = 44600, - [SMALL_STATE(1055)] = 44630, - [SMALL_STATE(1056)] = 44660, - [SMALL_STATE(1057)] = 44686, - [SMALL_STATE(1058)] = 44716, - [SMALL_STATE(1059)] = 44746, - [SMALL_STATE(1060)] = 44776, - [SMALL_STATE(1061)] = 44806, - [SMALL_STATE(1062)] = 44836, - [SMALL_STATE(1063)] = 44866, - [SMALL_STATE(1064)] = 44896, - [SMALL_STATE(1065)] = 44926, - [SMALL_STATE(1066)] = 44956, - [SMALL_STATE(1067)] = 44986, - [SMALL_STATE(1068)] = 45016, - [SMALL_STATE(1069)] = 45046, - [SMALL_STATE(1070)] = 45076, - [SMALL_STATE(1071)] = 45104, - [SMALL_STATE(1072)] = 45134, - [SMALL_STATE(1073)] = 45164, - [SMALL_STATE(1074)] = 45194, - [SMALL_STATE(1075)] = 45224, - [SMALL_STATE(1076)] = 45254, - [SMALL_STATE(1077)] = 45281, - [SMALL_STATE(1078)] = 45308, - [SMALL_STATE(1079)] = 45326, - [SMALL_STATE(1080)] = 45348, - [SMALL_STATE(1081)] = 45370, - [SMALL_STATE(1082)] = 45392, - [SMALL_STATE(1083)] = 45416, - [SMALL_STATE(1084)] = 45440, - [SMALL_STATE(1085)] = 45464, - [SMALL_STATE(1086)] = 45488, - [SMALL_STATE(1087)] = 45506, - [SMALL_STATE(1088)] = 45530, - [SMALL_STATE(1089)] = 45544, - [SMALL_STATE(1090)] = 45558, - [SMALL_STATE(1091)] = 45582, - [SMALL_STATE(1092)] = 45606, - [SMALL_STATE(1093)] = 45626, - [SMALL_STATE(1094)] = 45640, - [SMALL_STATE(1095)] = 45660, - [SMALL_STATE(1096)] = 45682, - [SMALL_STATE(1097)] = 45706, - [SMALL_STATE(1098)] = 45730, - [SMALL_STATE(1099)] = 45752, - [SMALL_STATE(1100)] = 45774, - [SMALL_STATE(1101)] = 45788, - [SMALL_STATE(1102)] = 45812, - [SMALL_STATE(1103)] = 45826, - [SMALL_STATE(1104)] = 45845, - [SMALL_STATE(1105)] = 45864, - [SMALL_STATE(1106)] = 45879, - [SMALL_STATE(1107)] = 45898, - [SMALL_STATE(1108)] = 45919, - [SMALL_STATE(1109)] = 45938, - [SMALL_STATE(1110)] = 45959, - [SMALL_STATE(1111)] = 45972, - [SMALL_STATE(1112)] = 45993, - [SMALL_STATE(1113)] = 46006, - [SMALL_STATE(1114)] = 46025, - [SMALL_STATE(1115)] = 46046, - [SMALL_STATE(1116)] = 46065, - [SMALL_STATE(1117)] = 46078, - [SMALL_STATE(1118)] = 46097, - [SMALL_STATE(1119)] = 46110, - [SMALL_STATE(1120)] = 46127, - [SMALL_STATE(1121)] = 46140, - [SMALL_STATE(1122)] = 46153, - [SMALL_STATE(1123)] = 46172, - [SMALL_STATE(1124)] = 46191, - [SMALL_STATE(1125)] = 46206, - [SMALL_STATE(1126)] = 46227, - [SMALL_STATE(1127)] = 46240, - [SMALL_STATE(1128)] = 46253, - [SMALL_STATE(1129)] = 46266, - [SMALL_STATE(1130)] = 46279, - [SMALL_STATE(1131)] = 46300, - [SMALL_STATE(1132)] = 46319, - [SMALL_STATE(1133)] = 46338, - [SMALL_STATE(1134)] = 46356, - [SMALL_STATE(1135)] = 46370, - [SMALL_STATE(1136)] = 46384, - [SMALL_STATE(1137)] = 46398, - [SMALL_STATE(1138)] = 46418, - [SMALL_STATE(1139)] = 46430, - [SMALL_STATE(1140)] = 46450, - [SMALL_STATE(1141)] = 46464, - [SMALL_STATE(1142)] = 46484, - [SMALL_STATE(1143)] = 46504, - [SMALL_STATE(1144)] = 46518, - [SMALL_STATE(1145)] = 46538, - [SMALL_STATE(1146)] = 46558, - [SMALL_STATE(1147)] = 46572, - [SMALL_STATE(1148)] = 46586, - [SMALL_STATE(1149)] = 46606, - [SMALL_STATE(1150)] = 46620, - [SMALL_STATE(1151)] = 46634, - [SMALL_STATE(1152)] = 46654, - [SMALL_STATE(1153)] = 46668, - [SMALL_STATE(1154)] = 46688, - [SMALL_STATE(1155)] = 46702, - [SMALL_STATE(1156)] = 46716, - [SMALL_STATE(1157)] = 46736, - [SMALL_STATE(1158)] = 46750, - [SMALL_STATE(1159)] = 46770, - [SMALL_STATE(1160)] = 46784, - [SMALL_STATE(1161)] = 46800, - [SMALL_STATE(1162)] = 46820, - [SMALL_STATE(1163)] = 46834, - [SMALL_STATE(1164)] = 46848, - [SMALL_STATE(1165)] = 46868, - [SMALL_STATE(1166)] = 46882, - [SMALL_STATE(1167)] = 46902, - [SMALL_STATE(1168)] = 46914, - [SMALL_STATE(1169)] = 46928, - [SMALL_STATE(1170)] = 46948, - [SMALL_STATE(1171)] = 46968, - [SMALL_STATE(1172)] = 46986, - [SMALL_STATE(1173)] = 47000, - [SMALL_STATE(1174)] = 47014, - [SMALL_STATE(1175)] = 47034, - [SMALL_STATE(1176)] = 47048, - [SMALL_STATE(1177)] = 47066, - [SMALL_STATE(1178)] = 47080, - [SMALL_STATE(1179)] = 47094, - [SMALL_STATE(1180)] = 47108, - [SMALL_STATE(1181)] = 47122, - [SMALL_STATE(1182)] = 47136, - [SMALL_STATE(1183)] = 47150, - [SMALL_STATE(1184)] = 47164, - [SMALL_STATE(1185)] = 47178, - [SMALL_STATE(1186)] = 47198, - [SMALL_STATE(1187)] = 47212, - [SMALL_STATE(1188)] = 47232, - [SMALL_STATE(1189)] = 47252, - [SMALL_STATE(1190)] = 47266, - [SMALL_STATE(1191)] = 47286, - [SMALL_STATE(1192)] = 47302, - [SMALL_STATE(1193)] = 47316, - [SMALL_STATE(1194)] = 47330, - [SMALL_STATE(1195)] = 47346, - [SMALL_STATE(1196)] = 47360, - [SMALL_STATE(1197)] = 47372, - [SMALL_STATE(1198)] = 47392, - [SMALL_STATE(1199)] = 47406, - [SMALL_STATE(1200)] = 47420, - [SMALL_STATE(1201)] = 47437, - [SMALL_STATE(1202)] = 47454, - [SMALL_STATE(1203)] = 47469, - [SMALL_STATE(1204)] = 47486, - [SMALL_STATE(1205)] = 47503, - [SMALL_STATE(1206)] = 47522, - [SMALL_STATE(1207)] = 47539, - [SMALL_STATE(1208)] = 47556, - [SMALL_STATE(1209)] = 47573, - [SMALL_STATE(1210)] = 47592, - [SMALL_STATE(1211)] = 47609, - [SMALL_STATE(1212)] = 47624, - [SMALL_STATE(1213)] = 47641, - [SMALL_STATE(1214)] = 47660, - [SMALL_STATE(1215)] = 47677, - [SMALL_STATE(1216)] = 47688, - [SMALL_STATE(1217)] = 47699, - [SMALL_STATE(1218)] = 47716, - [SMALL_STATE(1219)] = 47735, - [SMALL_STATE(1220)] = 47748, - [SMALL_STATE(1221)] = 47765, - [SMALL_STATE(1222)] = 47780, - [SMALL_STATE(1223)] = 47797, - [SMALL_STATE(1224)] = 47812, - [SMALL_STATE(1225)] = 47829, - [SMALL_STATE(1226)] = 47846, - [SMALL_STATE(1227)] = 47863, - [SMALL_STATE(1228)] = 47880, - [SMALL_STATE(1229)] = 47897, - [SMALL_STATE(1230)] = 47914, - [SMALL_STATE(1231)] = 47931, - [SMALL_STATE(1232)] = 47946, - [SMALL_STATE(1233)] = 47963, - [SMALL_STATE(1234)] = 47980, - [SMALL_STATE(1235)] = 47997, - [SMALL_STATE(1236)] = 48014, - [SMALL_STATE(1237)] = 48031, - [SMALL_STATE(1238)] = 48048, - [SMALL_STATE(1239)] = 48061, - [SMALL_STATE(1240)] = 48078, - [SMALL_STATE(1241)] = 48089, - [SMALL_STATE(1242)] = 48106, - [SMALL_STATE(1243)] = 48121, - [SMALL_STATE(1244)] = 48138, - [SMALL_STATE(1245)] = 48155, - [SMALL_STATE(1246)] = 48172, - [SMALL_STATE(1247)] = 48189, - [SMALL_STATE(1248)] = 48206, - [SMALL_STATE(1249)] = 48221, - [SMALL_STATE(1250)] = 48238, - [SMALL_STATE(1251)] = 48255, - [SMALL_STATE(1252)] = 48270, - [SMALL_STATE(1253)] = 48287, - [SMALL_STATE(1254)] = 48304, - [SMALL_STATE(1255)] = 48321, - [SMALL_STATE(1256)] = 48336, - [SMALL_STATE(1257)] = 48347, - [SMALL_STATE(1258)] = 48362, - [SMALL_STATE(1259)] = 48379, - [SMALL_STATE(1260)] = 48396, - [SMALL_STATE(1261)] = 48411, - [SMALL_STATE(1262)] = 48428, - [SMALL_STATE(1263)] = 48445, - [SMALL_STATE(1264)] = 48464, - [SMALL_STATE(1265)] = 48483, - [SMALL_STATE(1266)] = 48494, - [SMALL_STATE(1267)] = 48511, - [SMALL_STATE(1268)] = 48528, - [SMALL_STATE(1269)] = 48543, - [SMALL_STATE(1270)] = 48560, - [SMALL_STATE(1271)] = 48571, - [SMALL_STATE(1272)] = 48586, - [SMALL_STATE(1273)] = 48603, - [SMALL_STATE(1274)] = 48620, - [SMALL_STATE(1275)] = 48634, - [SMALL_STATE(1276)] = 48648, - [SMALL_STATE(1277)] = 48662, - [SMALL_STATE(1278)] = 48676, - [SMALL_STATE(1279)] = 48690, - [SMALL_STATE(1280)] = 48700, - [SMALL_STATE(1281)] = 48712, - [SMALL_STATE(1282)] = 48726, - [SMALL_STATE(1283)] = 48738, - [SMALL_STATE(1284)] = 48752, - [SMALL_STATE(1285)] = 48766, - [SMALL_STATE(1286)] = 48780, - [SMALL_STATE(1287)] = 48794, - [SMALL_STATE(1288)] = 48808, - [SMALL_STATE(1289)] = 48822, - [SMALL_STATE(1290)] = 48836, - [SMALL_STATE(1291)] = 48850, - [SMALL_STATE(1292)] = 48864, - [SMALL_STATE(1293)] = 48878, - [SMALL_STATE(1294)] = 48888, - [SMALL_STATE(1295)] = 48900, - [SMALL_STATE(1296)] = 48914, - [SMALL_STATE(1297)] = 48928, - [SMALL_STATE(1298)] = 48942, - [SMALL_STATE(1299)] = 48954, - [SMALL_STATE(1300)] = 48968, - [SMALL_STATE(1301)] = 48980, - [SMALL_STATE(1302)] = 48994, - [SMALL_STATE(1303)] = 49006, - [SMALL_STATE(1304)] = 49020, - [SMALL_STATE(1305)] = 49034, - [SMALL_STATE(1306)] = 49048, - [SMALL_STATE(1307)] = 49062, - [SMALL_STATE(1308)] = 49076, - [SMALL_STATE(1309)] = 49086, - [SMALL_STATE(1310)] = 49100, - [SMALL_STATE(1311)] = 49114, - [SMALL_STATE(1312)] = 49128, - [SMALL_STATE(1313)] = 49142, - [SMALL_STATE(1314)] = 49154, - [SMALL_STATE(1315)] = 49168, - [SMALL_STATE(1316)] = 49182, - [SMALL_STATE(1317)] = 49196, - [SMALL_STATE(1318)] = 49210, - [SMALL_STATE(1319)] = 49220, - [SMALL_STATE(1320)] = 49234, - [SMALL_STATE(1321)] = 49248, - [SMALL_STATE(1322)] = 49262, - [SMALL_STATE(1323)] = 49276, - [SMALL_STATE(1324)] = 49290, - [SMALL_STATE(1325)] = 49304, - [SMALL_STATE(1326)] = 49316, - [SMALL_STATE(1327)] = 49330, - [SMALL_STATE(1328)] = 49340, - [SMALL_STATE(1329)] = 49354, - [SMALL_STATE(1330)] = 49366, - [SMALL_STATE(1331)] = 49380, - [SMALL_STATE(1332)] = 49390, - [SMALL_STATE(1333)] = 49404, - [SMALL_STATE(1334)] = 49418, - [SMALL_STATE(1335)] = 49432, - [SMALL_STATE(1336)] = 49446, - [SMALL_STATE(1337)] = 49460, - [SMALL_STATE(1338)] = 49472, - [SMALL_STATE(1339)] = 49486, - [SMALL_STATE(1340)] = 49500, - [SMALL_STATE(1341)] = 49512, - [SMALL_STATE(1342)] = 49526, - [SMALL_STATE(1343)] = 49538, - [SMALL_STATE(1344)] = 49552, - [SMALL_STATE(1345)] = 49566, - [SMALL_STATE(1346)] = 49580, - [SMALL_STATE(1347)] = 49594, - [SMALL_STATE(1348)] = 49608, - [SMALL_STATE(1349)] = 49622, - [SMALL_STATE(1350)] = 49636, - [SMALL_STATE(1351)] = 49650, - [SMALL_STATE(1352)] = 49664, - [SMALL_STATE(1353)] = 49678, - [SMALL_STATE(1354)] = 49692, - [SMALL_STATE(1355)] = 49706, - [SMALL_STATE(1356)] = 49720, - [SMALL_STATE(1357)] = 49734, - [SMALL_STATE(1358)] = 49746, - [SMALL_STATE(1359)] = 49760, - [SMALL_STATE(1360)] = 49770, - [SMALL_STATE(1361)] = 49780, - [SMALL_STATE(1362)] = 49794, - [SMALL_STATE(1363)] = 49808, - [SMALL_STATE(1364)] = 49822, - [SMALL_STATE(1365)] = 49836, - [SMALL_STATE(1366)] = 49850, - [SMALL_STATE(1367)] = 49864, - [SMALL_STATE(1368)] = 49878, - [SMALL_STATE(1369)] = 49892, - [SMALL_STATE(1370)] = 49906, - [SMALL_STATE(1371)] = 49920, - [SMALL_STATE(1372)] = 49931, - [SMALL_STATE(1373)] = 49942, - [SMALL_STATE(1374)] = 49953, - [SMALL_STATE(1375)] = 49964, - [SMALL_STATE(1376)] = 49975, - [SMALL_STATE(1377)] = 49986, - [SMALL_STATE(1378)] = 49997, - [SMALL_STATE(1379)] = 50008, - [SMALL_STATE(1380)] = 50017, - [SMALL_STATE(1381)] = 50028, - [SMALL_STATE(1382)] = 50037, - [SMALL_STATE(1383)] = 50046, - [SMALL_STATE(1384)] = 50055, - [SMALL_STATE(1385)] = 50066, - [SMALL_STATE(1386)] = 50077, - [SMALL_STATE(1387)] = 50088, - [SMALL_STATE(1388)] = 50099, - [SMALL_STATE(1389)] = 50110, - [SMALL_STATE(1390)] = 50121, - [SMALL_STATE(1391)] = 50132, - [SMALL_STATE(1392)] = 50143, - [SMALL_STATE(1393)] = 50154, - [SMALL_STATE(1394)] = 50165, - [SMALL_STATE(1395)] = 50176, - [SMALL_STATE(1396)] = 50187, - [SMALL_STATE(1397)] = 50198, - [SMALL_STATE(1398)] = 50207, - [SMALL_STATE(1399)] = 50218, - [SMALL_STATE(1400)] = 50227, - [SMALL_STATE(1401)] = 50238, - [SMALL_STATE(1402)] = 50247, - [SMALL_STATE(1403)] = 50258, - [SMALL_STATE(1404)] = 50269, - [SMALL_STATE(1405)] = 50280, - [SMALL_STATE(1406)] = 50291, - [SMALL_STATE(1407)] = 50300, - [SMALL_STATE(1408)] = 50309, - [SMALL_STATE(1409)] = 50320, - [SMALL_STATE(1410)] = 50331, - [SMALL_STATE(1411)] = 50342, - [SMALL_STATE(1412)] = 50353, - [SMALL_STATE(1413)] = 50364, - [SMALL_STATE(1414)] = 50375, - [SMALL_STATE(1415)] = 50386, - [SMALL_STATE(1416)] = 50397, - [SMALL_STATE(1417)] = 50408, - [SMALL_STATE(1418)] = 50419, - [SMALL_STATE(1419)] = 50430, - [SMALL_STATE(1420)] = 50441, - [SMALL_STATE(1421)] = 50452, - [SMALL_STATE(1422)] = 50461, - [SMALL_STATE(1423)] = 50472, - [SMALL_STATE(1424)] = 50481, - [SMALL_STATE(1425)] = 50492, - [SMALL_STATE(1426)] = 50503, - [SMALL_STATE(1427)] = 50514, - [SMALL_STATE(1428)] = 50525, - [SMALL_STATE(1429)] = 50536, - [SMALL_STATE(1430)] = 50545, - [SMALL_STATE(1431)] = 50554, - [SMALL_STATE(1432)] = 50565, - [SMALL_STATE(1433)] = 50576, - [SMALL_STATE(1434)] = 50587, - [SMALL_STATE(1435)] = 50598, - [SMALL_STATE(1436)] = 50607, - [SMALL_STATE(1437)] = 50618, - [SMALL_STATE(1438)] = 50629, - [SMALL_STATE(1439)] = 50640, - [SMALL_STATE(1440)] = 50651, - [SMALL_STATE(1441)] = 50662, - [SMALL_STATE(1442)] = 50673, - [SMALL_STATE(1443)] = 50684, - [SMALL_STATE(1444)] = 50695, - [SMALL_STATE(1445)] = 50706, - [SMALL_STATE(1446)] = 50717, - [SMALL_STATE(1447)] = 50728, - [SMALL_STATE(1448)] = 50737, - [SMALL_STATE(1449)] = 50746, - [SMALL_STATE(1450)] = 50757, - [SMALL_STATE(1451)] = 50768, - [SMALL_STATE(1452)] = 50777, - [SMALL_STATE(1453)] = 50788, - [SMALL_STATE(1454)] = 50797, - [SMALL_STATE(1455)] = 50806, - [SMALL_STATE(1456)] = 50815, - [SMALL_STATE(1457)] = 50826, - [SMALL_STATE(1458)] = 50837, - [SMALL_STATE(1459)] = 50848, - [SMALL_STATE(1460)] = 50859, - [SMALL_STATE(1461)] = 50870, - [SMALL_STATE(1462)] = 50879, - [SMALL_STATE(1463)] = 50890, - [SMALL_STATE(1464)] = 50901, - [SMALL_STATE(1465)] = 50912, - [SMALL_STATE(1466)] = 50923, - [SMALL_STATE(1467)] = 50934, - [SMALL_STATE(1468)] = 50945, - [SMALL_STATE(1469)] = 50954, - [SMALL_STATE(1470)] = 50965, - [SMALL_STATE(1471)] = 50976, - [SMALL_STATE(1472)] = 50987, - [SMALL_STATE(1473)] = 50998, - [SMALL_STATE(1474)] = 51009, - [SMALL_STATE(1475)] = 51020, - [SMALL_STATE(1476)] = 51031, - [SMALL_STATE(1477)] = 51040, - [SMALL_STATE(1478)] = 51051, - [SMALL_STATE(1479)] = 51062, - [SMALL_STATE(1480)] = 51071, - [SMALL_STATE(1481)] = 51082, - [SMALL_STATE(1482)] = 51093, - [SMALL_STATE(1483)] = 51104, - [SMALL_STATE(1484)] = 51113, - [SMALL_STATE(1485)] = 51124, - [SMALL_STATE(1486)] = 51135, - [SMALL_STATE(1487)] = 51146, - [SMALL_STATE(1488)] = 51157, - [SMALL_STATE(1489)] = 51168, - [SMALL_STATE(1490)] = 51179, - [SMALL_STATE(1491)] = 51188, - [SMALL_STATE(1492)] = 51197, - [SMALL_STATE(1493)] = 51208, - [SMALL_STATE(1494)] = 51219, - [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)] = 51494, - [SMALL_STATE(1520)] = 51505, - [SMALL_STATE(1521)] = 51516, - [SMALL_STATE(1522)] = 51527, - [SMALL_STATE(1523)] = 51538, - [SMALL_STATE(1524)] = 51549, - [SMALL_STATE(1525)] = 51560, - [SMALL_STATE(1526)] = 51571, - [SMALL_STATE(1527)] = 51582, - [SMALL_STATE(1528)] = 51593, - [SMALL_STATE(1529)] = 51604, - [SMALL_STATE(1530)] = 51615, - [SMALL_STATE(1531)] = 51626, - [SMALL_STATE(1532)] = 51637, - [SMALL_STATE(1533)] = 51648, - [SMALL_STATE(1534)] = 51659, - [SMALL_STATE(1535)] = 51670, - [SMALL_STATE(1536)] = 51681, - [SMALL_STATE(1537)] = 51692, - [SMALL_STATE(1538)] = 51703, - [SMALL_STATE(1539)] = 51714, - [SMALL_STATE(1540)] = 51725, - [SMALL_STATE(1541)] = 51736, - [SMALL_STATE(1542)] = 51747, - [SMALL_STATE(1543)] = 51758, - [SMALL_STATE(1544)] = 51769, - [SMALL_STATE(1545)] = 51780, - [SMALL_STATE(1546)] = 51791, - [SMALL_STATE(1547)] = 51802, - [SMALL_STATE(1548)] = 51813, - [SMALL_STATE(1549)] = 51824, - [SMALL_STATE(1550)] = 51833, - [SMALL_STATE(1551)] = 51844, - [SMALL_STATE(1552)] = 51855, - [SMALL_STATE(1553)] = 51866, - [SMALL_STATE(1554)] = 51877, - [SMALL_STATE(1555)] = 51888, - [SMALL_STATE(1556)] = 51899, - [SMALL_STATE(1557)] = 51910, - [SMALL_STATE(1558)] = 51921, - [SMALL_STATE(1559)] = 51932, - [SMALL_STATE(1560)] = 51941, - [SMALL_STATE(1561)] = 51952, - [SMALL_STATE(1562)] = 51961, - [SMALL_STATE(1563)] = 51970, - [SMALL_STATE(1564)] = 51981, - [SMALL_STATE(1565)] = 51992, - [SMALL_STATE(1566)] = 52003, - [SMALL_STATE(1567)] = 52014, - [SMALL_STATE(1568)] = 52025, - [SMALL_STATE(1569)] = 52034, - [SMALL_STATE(1570)] = 52045, - [SMALL_STATE(1571)] = 52054, - [SMALL_STATE(1572)] = 52065, - [SMALL_STATE(1573)] = 52076, - [SMALL_STATE(1574)] = 52087, - [SMALL_STATE(1575)] = 52098, - [SMALL_STATE(1576)] = 52109, - [SMALL_STATE(1577)] = 52120, - [SMALL_STATE(1578)] = 52131, - [SMALL_STATE(1579)] = 52142, - [SMALL_STATE(1580)] = 52153, - [SMALL_STATE(1581)] = 52164, - [SMALL_STATE(1582)] = 52175, - [SMALL_STATE(1583)] = 52186, - [SMALL_STATE(1584)] = 52197, - [SMALL_STATE(1585)] = 52208, - [SMALL_STATE(1586)] = 52219, - [SMALL_STATE(1587)] = 52230, - [SMALL_STATE(1588)] = 52241, - [SMALL_STATE(1589)] = 52252, - [SMALL_STATE(1590)] = 52263, - [SMALL_STATE(1591)] = 52274, - [SMALL_STATE(1592)] = 52285, - [SMALL_STATE(1593)] = 52296, - [SMALL_STATE(1594)] = 52307, - [SMALL_STATE(1595)] = 52318, - [SMALL_STATE(1596)] = 52329, - [SMALL_STATE(1597)] = 52340, - [SMALL_STATE(1598)] = 52351, - [SMALL_STATE(1599)] = 52362, - [SMALL_STATE(1600)] = 52373, - [SMALL_STATE(1601)] = 52384, - [SMALL_STATE(1602)] = 52395, - [SMALL_STATE(1603)] = 52406, - [SMALL_STATE(1604)] = 52417, - [SMALL_STATE(1605)] = 52428, - [SMALL_STATE(1606)] = 52439, - [SMALL_STATE(1607)] = 52450, - [SMALL_STATE(1608)] = 52461, - [SMALL_STATE(1609)] = 52472, - [SMALL_STATE(1610)] = 52483, - [SMALL_STATE(1611)] = 52494, - [SMALL_STATE(1612)] = 52505, - [SMALL_STATE(1613)] = 52516, - [SMALL_STATE(1614)] = 52527, - [SMALL_STATE(1615)] = 52538, - [SMALL_STATE(1616)] = 52546, - [SMALL_STATE(1617)] = 52554, - [SMALL_STATE(1618)] = 52562, - [SMALL_STATE(1619)] = 52570, - [SMALL_STATE(1620)] = 52578, - [SMALL_STATE(1621)] = 52586, - [SMALL_STATE(1622)] = 52594, - [SMALL_STATE(1623)] = 52604, - [SMALL_STATE(1624)] = 52612, - [SMALL_STATE(1625)] = 52620, - [SMALL_STATE(1626)] = 52628, - [SMALL_STATE(1627)] = 52636, - [SMALL_STATE(1628)] = 52644, - [SMALL_STATE(1629)] = 52652, - [SMALL_STATE(1630)] = 52660, - [SMALL_STATE(1631)] = 52670, - [SMALL_STATE(1632)] = 52678, - [SMALL_STATE(1633)] = 52686, - [SMALL_STATE(1634)] = 52694, - [SMALL_STATE(1635)] = 52702, - [SMALL_STATE(1636)] = 52712, - [SMALL_STATE(1637)] = 52722, - [SMALL_STATE(1638)] = 52730, - [SMALL_STATE(1639)] = 52738, - [SMALL_STATE(1640)] = 52746, - [SMALL_STATE(1641)] = 52754, - [SMALL_STATE(1642)] = 52762, - [SMALL_STATE(1643)] = 52770, - [SMALL_STATE(1644)] = 52778, - [SMALL_STATE(1645)] = 52786, - [SMALL_STATE(1646)] = 52794, - [SMALL_STATE(1647)] = 52802, - [SMALL_STATE(1648)] = 52810, - [SMALL_STATE(1649)] = 52818, - [SMALL_STATE(1650)] = 52826, - [SMALL_STATE(1651)] = 52834, - [SMALL_STATE(1652)] = 52842, - [SMALL_STATE(1653)] = 52850, - [SMALL_STATE(1654)] = 52858, - [SMALL_STATE(1655)] = 52866, - [SMALL_STATE(1656)] = 52874, - [SMALL_STATE(1657)] = 52882, - [SMALL_STATE(1658)] = 52890, - [SMALL_STATE(1659)] = 52898, - [SMALL_STATE(1660)] = 52906, - [SMALL_STATE(1661)] = 52914, - [SMALL_STATE(1662)] = 52922, - [SMALL_STATE(1663)] = 52930, - [SMALL_STATE(1664)] = 52938, - [SMALL_STATE(1665)] = 52946, - [SMALL_STATE(1666)] = 52954, - [SMALL_STATE(1667)] = 52962, - [SMALL_STATE(1668)] = 52970, - [SMALL_STATE(1669)] = 52978, - [SMALL_STATE(1670)] = 52986, - [SMALL_STATE(1671)] = 52994, - [SMALL_STATE(1672)] = 53002, - [SMALL_STATE(1673)] = 53010, - [SMALL_STATE(1674)] = 53018, - [SMALL_STATE(1675)] = 53026, - [SMALL_STATE(1676)] = 53034, - [SMALL_STATE(1677)] = 53042, - [SMALL_STATE(1678)] = 53050, - [SMALL_STATE(1679)] = 53058, - [SMALL_STATE(1680)] = 53066, - [SMALL_STATE(1681)] = 53074, - [SMALL_STATE(1682)] = 53082, - [SMALL_STATE(1683)] = 53090, - [SMALL_STATE(1684)] = 53098, - [SMALL_STATE(1685)] = 53106, - [SMALL_STATE(1686)] = 53114, - [SMALL_STATE(1687)] = 53122, - [SMALL_STATE(1688)] = 53130, - [SMALL_STATE(1689)] = 53140, - [SMALL_STATE(1690)] = 53148, - [SMALL_STATE(1691)] = 53156, - [SMALL_STATE(1692)] = 53164, - [SMALL_STATE(1693)] = 53174, - [SMALL_STATE(1694)] = 53182, - [SMALL_STATE(1695)] = 53190, - [SMALL_STATE(1696)] = 53198, - [SMALL_STATE(1697)] = 53206, - [SMALL_STATE(1698)] = 53214, - [SMALL_STATE(1699)] = 53224, - [SMALL_STATE(1700)] = 53232, - [SMALL_STATE(1701)] = 53240, - [SMALL_STATE(1702)] = 53248, - [SMALL_STATE(1703)] = 53256, - [SMALL_STATE(1704)] = 53264, - [SMALL_STATE(1705)] = 53272, - [SMALL_STATE(1706)] = 53280, - [SMALL_STATE(1707)] = 53288, - [SMALL_STATE(1708)] = 53296, - [SMALL_STATE(1709)] = 53304, - [SMALL_STATE(1710)] = 53312, - [SMALL_STATE(1711)] = 53320, - [SMALL_STATE(1712)] = 53328, - [SMALL_STATE(1713)] = 53336, - [SMALL_STATE(1714)] = 53344, - [SMALL_STATE(1715)] = 53354, - [SMALL_STATE(1716)] = 53362, - [SMALL_STATE(1717)] = 53370, - [SMALL_STATE(1718)] = 53378, - [SMALL_STATE(1719)] = 53386, - [SMALL_STATE(1720)] = 53394, - [SMALL_STATE(1721)] = 53402, + [SMALL_STATE(665)] = 0, + [SMALL_STATE(666)] = 83, + [SMALL_STATE(667)] = 174, + [SMALL_STATE(668)] = 251, + [SMALL_STATE(669)] = 328, + [SMALL_STATE(670)] = 405, + [SMALL_STATE(671)] = 476, + [SMALL_STATE(672)] = 547, + [SMALL_STATE(673)] = 623, + [SMALL_STATE(674)] = 691, + [SMALL_STATE(675)] = 769, + [SMALL_STATE(676)] = 845, + [SMALL_STATE(677)] = 913, + [SMALL_STATE(678)] = 984, + [SMALL_STATE(679)] = 1059, + [SMALL_STATE(680)] = 1130, + [SMALL_STATE(681)] = 1212, + [SMALL_STATE(682)] = 1278, + [SMALL_STATE(683)] = 1346, + [SMALL_STATE(684)] = 1414, + [SMALL_STATE(685)] = 1480, + [SMALL_STATE(686)] = 1546, + [SMALL_STATE(687)] = 1614, + [SMALL_STATE(688)] = 1682, + [SMALL_STATE(689)] = 1750, + [SMALL_STATE(690)] = 1816, + [SMALL_STATE(691)] = 1884, + [SMALL_STATE(692)] = 1950, + [SMALL_STATE(693)] = 2020, + [SMALL_STATE(694)] = 2088, + [SMALL_STATE(695)] = 2154, + [SMALL_STATE(696)] = 2236, + [SMALL_STATE(697)] = 2304, + [SMALL_STATE(698)] = 2372, + [SMALL_STATE(699)] = 2442, + [SMALL_STATE(700)] = 2508, + [SMALL_STATE(701)] = 2576, + [SMALL_STATE(702)] = 2642, + [SMALL_STATE(703)] = 2708, + [SMALL_STATE(704)] = 2776, + [SMALL_STATE(705)] = 2842, + [SMALL_STATE(706)] = 2908, + [SMALL_STATE(707)] = 2974, + [SMALL_STATE(708)] = 3040, + [SMALL_STATE(709)] = 3106, + [SMALL_STATE(710)] = 3188, + [SMALL_STATE(711)] = 3254, + [SMALL_STATE(712)] = 3319, + [SMALL_STATE(713)] = 3392, + [SMALL_STATE(714)] = 3457, + [SMALL_STATE(715)] = 3522, + [SMALL_STATE(716)] = 3587, + [SMALL_STATE(717)] = 3652, + [SMALL_STATE(718)] = 3717, + [SMALL_STATE(719)] = 3782, + [SMALL_STATE(720)] = 3847, + [SMALL_STATE(721)] = 3912, + [SMALL_STATE(722)] = 3977, + [SMALL_STATE(723)] = 4042, + [SMALL_STATE(724)] = 4107, + [SMALL_STATE(725)] = 4180, + [SMALL_STATE(726)] = 4245, + [SMALL_STATE(727)] = 4310, + [SMALL_STATE(728)] = 4375, + [SMALL_STATE(729)] = 4440, + [SMALL_STATE(730)] = 4505, + [SMALL_STATE(731)] = 4570, + [SMALL_STATE(732)] = 4635, + [SMALL_STATE(733)] = 4700, + [SMALL_STATE(734)] = 4765, + [SMALL_STATE(735)] = 4830, + [SMALL_STATE(736)] = 4895, + [SMALL_STATE(737)] = 4960, + [SMALL_STATE(738)] = 5025, + [SMALL_STATE(739)] = 5090, + [SMALL_STATE(740)] = 5155, + [SMALL_STATE(741)] = 5220, + [SMALL_STATE(742)] = 5285, + [SMALL_STATE(743)] = 5358, + [SMALL_STATE(744)] = 5423, + [SMALL_STATE(745)] = 5488, + [SMALL_STATE(746)] = 5561, + [SMALL_STATE(747)] = 5630, + [SMALL_STATE(748)] = 5695, + [SMALL_STATE(749)] = 5760, + [SMALL_STATE(750)] = 5825, + [SMALL_STATE(751)] = 5890, + [SMALL_STATE(752)] = 5955, + [SMALL_STATE(753)] = 6020, + [SMALL_STATE(754)] = 6085, + [SMALL_STATE(755)] = 6150, + [SMALL_STATE(756)] = 6221, + [SMALL_STATE(757)] = 6286, + [SMALL_STATE(758)] = 6351, + [SMALL_STATE(759)] = 6416, + [SMALL_STATE(760)] = 6481, + [SMALL_STATE(761)] = 6550, + [SMALL_STATE(762)] = 6623, + [SMALL_STATE(763)] = 6688, + [SMALL_STATE(764)] = 6753, + [SMALL_STATE(765)] = 6818, + [SMALL_STATE(766)] = 6883, + [SMALL_STATE(767)] = 6948, + [SMALL_STATE(768)] = 7013, + [SMALL_STATE(769)] = 7078, + [SMALL_STATE(770)] = 7143, + [SMALL_STATE(771)] = 7208, + [SMALL_STATE(772)] = 7273, + [SMALL_STATE(773)] = 7346, + [SMALL_STATE(774)] = 7411, + [SMALL_STATE(775)] = 7476, + [SMALL_STATE(776)] = 7541, + [SMALL_STATE(777)] = 7606, + [SMALL_STATE(778)] = 7671, + [SMALL_STATE(779)] = 7736, + [SMALL_STATE(780)] = 7801, + [SMALL_STATE(781)] = 7866, + [SMALL_STATE(782)] = 7931, + [SMALL_STATE(783)] = 7996, + [SMALL_STATE(784)] = 8061, + [SMALL_STATE(785)] = 8134, + [SMALL_STATE(786)] = 8199, + [SMALL_STATE(787)] = 8267, + [SMALL_STATE(788)] = 8339, + [SMALL_STATE(789)] = 8411, + [SMALL_STATE(790)] = 8483, + [SMALL_STATE(791)] = 8555, + [SMALL_STATE(792)] = 8623, + [SMALL_STATE(793)] = 8695, + [SMALL_STATE(794)] = 8763, + [SMALL_STATE(795)] = 8835, + [SMALL_STATE(796)] = 8901, + [SMALL_STATE(797)] = 8967, + [SMALL_STATE(798)] = 9038, + [SMALL_STATE(799)] = 9105, + [SMALL_STATE(800)] = 9176, + [SMALL_STATE(801)] = 9239, + [SMALL_STATE(802)] = 9302, + [SMALL_STATE(803)] = 9373, + [SMALL_STATE(804)] = 9442, + [SMALL_STATE(805)] = 9505, + [SMALL_STATE(806)] = 9576, + [SMALL_STATE(807)] = 9643, + [SMALL_STATE(808)] = 9706, + [SMALL_STATE(809)] = 9777, + [SMALL_STATE(810)] = 9848, + [SMALL_STATE(811)] = 9915, + [SMALL_STATE(812)] = 9984, + [SMALL_STATE(813)] = 10049, + [SMALL_STATE(814)] = 10120, + [SMALL_STATE(815)] = 10185, + [SMALL_STATE(816)] = 10256, + [SMALL_STATE(817)] = 10325, + [SMALL_STATE(818)] = 10388, + [SMALL_STATE(819)] = 10457, + [SMALL_STATE(820)] = 10520, + [SMALL_STATE(821)] = 10585, + [SMALL_STATE(822)] = 10654, + [SMALL_STATE(823)] = 10717, + [SMALL_STATE(824)] = 10780, + [SMALL_STATE(825)] = 10851, + [SMALL_STATE(826)] = 10922, + [SMALL_STATE(827)] = 10989, + [SMALL_STATE(828)] = 11060, + [SMALL_STATE(829)] = 11129, + [SMALL_STATE(830)] = 11194, + [SMALL_STATE(831)] = 11265, + [SMALL_STATE(832)] = 11331, + [SMALL_STATE(833)] = 11397, + [SMALL_STATE(834)] = 11465, + [SMALL_STATE(835)] = 11533, + [SMALL_STATE(836)] = 11605, + [SMALL_STATE(837)] = 11675, + [SMALL_STATE(838)] = 11743, + [SMALL_STATE(839)] = 11811, + [SMALL_STATE(840)] = 11877, + [SMALL_STATE(841)] = 11945, + [SMALL_STATE(842)] = 12010, + [SMALL_STATE(843)] = 12075, + [SMALL_STATE(844)] = 12146, + [SMALL_STATE(845)] = 12215, + [SMALL_STATE(846)] = 12282, + [SMALL_STATE(847)] = 12351, + [SMALL_STATE(848)] = 12416, + [SMALL_STATE(849)] = 12485, + [SMALL_STATE(850)] = 12552, + [SMALL_STATE(851)] = 12617, + [SMALL_STATE(852)] = 12686, + [SMALL_STATE(853)] = 12753, + [SMALL_STATE(854)] = 12822, + [SMALL_STATE(855)] = 12891, + [SMALL_STATE(856)] = 12958, + [SMALL_STATE(857)] = 13023, + [SMALL_STATE(858)] = 13090, + [SMALL_STATE(859)] = 13159, + [SMALL_STATE(860)] = 13226, + [SMALL_STATE(861)] = 13293, + [SMALL_STATE(862)] = 13360, + [SMALL_STATE(863)] = 13427, + [SMALL_STATE(864)] = 13492, + [SMALL_STATE(865)] = 13559, + [SMALL_STATE(866)] = 13626, + [SMALL_STATE(867)] = 13691, + [SMALL_STATE(868)] = 13758, + [SMALL_STATE(869)] = 13823, + [SMALL_STATE(870)] = 13890, + [SMALL_STATE(871)] = 13955, + [SMALL_STATE(872)] = 14022, + [SMALL_STATE(873)] = 14089, + [SMALL_STATE(874)] = 14156, + [SMALL_STATE(875)] = 14223, + [SMALL_STATE(876)] = 14290, + [SMALL_STATE(877)] = 14354, + [SMALL_STATE(878)] = 14418, + [SMALL_STATE(879)] = 14482, + [SMALL_STATE(880)] = 14548, + [SMALL_STATE(881)] = 14614, + [SMALL_STATE(882)] = 14674, + [SMALL_STATE(883)] = 14742, + [SMALL_STATE(884)] = 14806, + [SMALL_STATE(885)] = 14866, + [SMALL_STATE(886)] = 14926, + [SMALL_STATE(887)] = 14992, + [SMALL_STATE(888)] = 15056, + [SMALL_STATE(889)] = 15116, + [SMALL_STATE(890)] = 15182, + [SMALL_STATE(891)] = 15246, + [SMALL_STATE(892)] = 15310, + [SMALL_STATE(893)] = 15374, + [SMALL_STATE(894)] = 15440, + [SMALL_STATE(895)] = 15506, + [SMALL_STATE(896)] = 15576, + [SMALL_STATE(897)] = 15644, + [SMALL_STATE(898)] = 15708, + [SMALL_STATE(899)] = 15772, + [SMALL_STATE(900)] = 15836, + [SMALL_STATE(901)] = 15900, + [SMALL_STATE(902)] = 15966, + [SMALL_STATE(903)] = 16032, + [SMALL_STATE(904)] = 16098, + [SMALL_STATE(905)] = 16164, + [SMALL_STATE(906)] = 16228, + [SMALL_STATE(907)] = 16294, + [SMALL_STATE(908)] = 16360, + [SMALL_STATE(909)] = 16426, + [SMALL_STATE(910)] = 16492, + [SMALL_STATE(911)] = 16558, + [SMALL_STATE(912)] = 16618, + [SMALL_STATE(913)] = 16678, + [SMALL_STATE(914)] = 16738, + [SMALL_STATE(915)] = 16798, + [SMALL_STATE(916)] = 16864, + [SMALL_STATE(917)] = 16927, + [SMALL_STATE(918)] = 16990, + [SMALL_STATE(919)] = 17053, + [SMALL_STATE(920)] = 17118, + [SMALL_STATE(921)] = 17181, + [SMALL_STATE(922)] = 17244, + [SMALL_STATE(923)] = 17307, + [SMALL_STATE(924)] = 17370, + [SMALL_STATE(925)] = 17437, + [SMALL_STATE(926)] = 17502, + [SMALL_STATE(927)] = 17564, + [SMALL_STATE(928)] = 17620, + [SMALL_STATE(929)] = 17680, + [SMALL_STATE(930)] = 17746, + [SMALL_STATE(931)] = 17799, + [SMALL_STATE(932)] = 17862, + [SMALL_STATE(933)] = 17923, + [SMALL_STATE(934)] = 17986, + [SMALL_STATE(935)] = 18041, + [SMALL_STATE(936)] = 18102, + [SMALL_STATE(937)] = 18155, + [SMALL_STATE(938)] = 18205, + [SMALL_STATE(939)] = 18255, + [SMALL_STATE(940)] = 18305, + [SMALL_STATE(941)] = 18355, + [SMALL_STATE(942)] = 18405, + [SMALL_STATE(943)] = 18455, + [SMALL_STATE(944)] = 18505, + [SMALL_STATE(945)] = 18555, + [SMALL_STATE(946)] = 18605, + [SMALL_STATE(947)] = 18655, + [SMALL_STATE(948)] = 18705, + [SMALL_STATE(949)] = 18759, + [SMALL_STATE(950)] = 18809, + [SMALL_STATE(951)] = 18863, + [SMALL_STATE(952)] = 18913, + [SMALL_STATE(953)] = 18963, + [SMALL_STATE(954)] = 19013, + [SMALL_STATE(955)] = 19063, + [SMALL_STATE(956)] = 19113, + [SMALL_STATE(957)] = 19163, + [SMALL_STATE(958)] = 19213, + [SMALL_STATE(959)] = 19263, + [SMALL_STATE(960)] = 19313, + [SMALL_STATE(961)] = 19363, + [SMALL_STATE(962)] = 19413, + [SMALL_STATE(963)] = 19463, + [SMALL_STATE(964)] = 19517, + [SMALL_STATE(965)] = 19567, + [SMALL_STATE(966)] = 19617, + [SMALL_STATE(967)] = 19667, + [SMALL_STATE(968)] = 19717, + [SMALL_STATE(969)] = 19767, + [SMALL_STATE(970)] = 19817, + [SMALL_STATE(971)] = 19867, + [SMALL_STATE(972)] = 19917, + [SMALL_STATE(973)] = 19967, + [SMALL_STATE(974)] = 20017, + [SMALL_STATE(975)] = 20067, + [SMALL_STATE(976)] = 20119, + [SMALL_STATE(977)] = 20169, + [SMALL_STATE(978)] = 20219, + [SMALL_STATE(979)] = 20269, + [SMALL_STATE(980)] = 20319, + [SMALL_STATE(981)] = 20369, + [SMALL_STATE(982)] = 20419, + [SMALL_STATE(983)] = 20469, + [SMALL_STATE(984)] = 20519, + [SMALL_STATE(985)] = 20569, + [SMALL_STATE(986)] = 20619, + [SMALL_STATE(987)] = 20669, + [SMALL_STATE(988)] = 20719, + [SMALL_STATE(989)] = 20769, + [SMALL_STATE(990)] = 20819, + [SMALL_STATE(991)] = 20869, + [SMALL_STATE(992)] = 20919, + [SMALL_STATE(993)] = 20969, + [SMALL_STATE(994)] = 21019, + [SMALL_STATE(995)] = 21069, + [SMALL_STATE(996)] = 21120, + [SMALL_STATE(997)] = 21171, + [SMALL_STATE(998)] = 21234, + [SMALL_STATE(999)] = 21291, + [SMALL_STATE(1000)] = 21342, + [SMALL_STATE(1001)] = 21390, + [SMALL_STATE(1002)] = 21442, + [SMALL_STATE(1003)] = 21492, + [SMALL_STATE(1004)] = 21552, + [SMALL_STATE(1005)] = 21610, + [SMALL_STATE(1006)] = 21662, + [SMALL_STATE(1007)] = 21720, + [SMALL_STATE(1008)] = 21770, + [SMALL_STATE(1009)] = 21830, + [SMALL_STATE(1010)] = 21884, + [SMALL_STATE(1011)] = 21932, + [SMALL_STATE(1012)] = 21982, + [SMALL_STATE(1013)] = 22029, + [SMALL_STATE(1014)] = 22110, + [SMALL_STATE(1015)] = 22193, + [SMALL_STATE(1016)] = 22258, + [SMALL_STATE(1017)] = 22319, + [SMALL_STATE(1018)] = 22394, + [SMALL_STATE(1019)] = 22481, + [SMALL_STATE(1020)] = 22572, + [SMALL_STATE(1021)] = 22663, + [SMALL_STATE(1022)] = 22710, + [SMALL_STATE(1023)] = 22757, + [SMALL_STATE(1024)] = 22804, + [SMALL_STATE(1025)] = 22851, + [SMALL_STATE(1026)] = 22898, + [SMALL_STATE(1027)] = 22945, + [SMALL_STATE(1028)] = 22992, + [SMALL_STATE(1029)] = 23039, + [SMALL_STATE(1030)] = 23086, + [SMALL_STATE(1031)] = 23133, + [SMALL_STATE(1032)] = 23180, + [SMALL_STATE(1033)] = 23227, + [SMALL_STATE(1034)] = 23274, + [SMALL_STATE(1035)] = 23321, + [SMALL_STATE(1036)] = 23368, + [SMALL_STATE(1037)] = 23415, + [SMALL_STATE(1038)] = 23462, + [SMALL_STATE(1039)] = 23509, + [SMALL_STATE(1040)] = 23560, + [SMALL_STATE(1041)] = 23651, + [SMALL_STATE(1042)] = 23742, + [SMALL_STATE(1043)] = 23813, + [SMALL_STATE(1044)] = 23874, + [SMALL_STATE(1045)] = 23957, + [SMALL_STATE(1046)] = 24042, + [SMALL_STATE(1047)] = 24109, + [SMALL_STATE(1048)] = 24188, + [SMALL_STATE(1049)] = 24269, + [SMALL_STATE(1050)] = 24352, + [SMALL_STATE(1051)] = 24417, + [SMALL_STATE(1052)] = 24478, + [SMALL_STATE(1053)] = 24553, + [SMALL_STATE(1054)] = 24640, + [SMALL_STATE(1055)] = 24731, + [SMALL_STATE(1056)] = 24778, + [SMALL_STATE(1057)] = 24869, + [SMALL_STATE(1058)] = 24916, + [SMALL_STATE(1059)] = 24963, + [SMALL_STATE(1060)] = 25010, + [SMALL_STATE(1061)] = 25057, + [SMALL_STATE(1062)] = 25104, + [SMALL_STATE(1063)] = 25151, + [SMALL_STATE(1064)] = 25198, + [SMALL_STATE(1065)] = 25245, + [SMALL_STATE(1066)] = 25292, + [SMALL_STATE(1067)] = 25339, + [SMALL_STATE(1068)] = 25430, + [SMALL_STATE(1069)] = 25521, + [SMALL_STATE(1070)] = 25612, + [SMALL_STATE(1071)] = 25703, + [SMALL_STATE(1072)] = 25754, + [SMALL_STATE(1073)] = 25845, + [SMALL_STATE(1074)] = 25896, + [SMALL_STATE(1075)] = 25947, + [SMALL_STATE(1076)] = 26018, + [SMALL_STATE(1077)] = 26109, + [SMALL_STATE(1078)] = 26200, + [SMALL_STATE(1079)] = 26291, + [SMALL_STATE(1080)] = 26382, + [SMALL_STATE(1081)] = 26473, + [SMALL_STATE(1082)] = 26534, + [SMALL_STATE(1083)] = 26617, + [SMALL_STATE(1084)] = 26668, + [SMALL_STATE(1085)] = 26719, + [SMALL_STATE(1086)] = 26768, + [SMALL_STATE(1087)] = 26819, + [SMALL_STATE(1088)] = 26910, + [SMALL_STATE(1089)] = 26961, + [SMALL_STATE(1090)] = 27008, + [SMALL_STATE(1091)] = 27059, + [SMALL_STATE(1092)] = 27110, + [SMALL_STATE(1093)] = 27157, + [SMALL_STATE(1094)] = 27204, + [SMALL_STATE(1095)] = 27251, + [SMALL_STATE(1096)] = 27336, + [SMALL_STATE(1097)] = 27383, + [SMALL_STATE(1098)] = 27430, + [SMALL_STATE(1099)] = 27477, + [SMALL_STATE(1100)] = 27524, + [SMALL_STATE(1101)] = 27573, + [SMALL_STATE(1102)] = 27620, + [SMALL_STATE(1103)] = 27667, + [SMALL_STATE(1104)] = 27714, + [SMALL_STATE(1105)] = 27761, + [SMALL_STATE(1106)] = 27808, + [SMALL_STATE(1107)] = 27855, + [SMALL_STATE(1108)] = 27902, + [SMALL_STATE(1109)] = 27949, + [SMALL_STATE(1110)] = 27996, + [SMALL_STATE(1111)] = 28043, + [SMALL_STATE(1112)] = 28110, + [SMALL_STATE(1113)] = 28189, + [SMALL_STATE(1114)] = 28240, + [SMALL_STATE(1115)] = 28331, + [SMALL_STATE(1116)] = 28381, + [SMALL_STATE(1117)] = 28475, + [SMALL_STATE(1118)] = 28527, + [SMALL_STATE(1119)] = 28579, + [SMALL_STATE(1120)] = 28631, + [SMALL_STATE(1121)] = 28721, + [SMALL_STATE(1122)] = 28811, + [SMALL_STATE(1123)] = 28901, + [SMALL_STATE(1124)] = 28991, + [SMALL_STATE(1125)] = 29081, + [SMALL_STATE(1126)] = 29173, + [SMALL_STATE(1127)] = 29267, + [SMALL_STATE(1128)] = 29317, + [SMALL_STATE(1129)] = 29411, + [SMALL_STATE(1130)] = 29505, + [SMALL_STATE(1131)] = 29595, + [SMALL_STATE(1132)] = 29689, + [SMALL_STATE(1133)] = 29779, + [SMALL_STATE(1134)] = 29849, + [SMALL_STATE(1135)] = 29909, + [SMALL_STATE(1136)] = 29991, + [SMALL_STATE(1137)] = 30075, + [SMALL_STATE(1138)] = 30141, + [SMALL_STATE(1139)] = 30219, + [SMALL_STATE(1140)] = 30299, + [SMALL_STATE(1141)] = 30381, + [SMALL_STATE(1142)] = 30445, + [SMALL_STATE(1143)] = 30505, + [SMALL_STATE(1144)] = 30579, + [SMALL_STATE(1145)] = 30665, + [SMALL_STATE(1146)] = 30755, + [SMALL_STATE(1147)] = 30845, + [SMALL_STATE(1148)] = 30938, + [SMALL_STATE(1149)] = 31011, + [SMALL_STATE(1150)] = 31096, + [SMALL_STATE(1151)] = 31185, + [SMALL_STATE(1152)] = 31266, + [SMALL_STATE(1153)] = 31359, + [SMALL_STATE(1154)] = 31448, + [SMALL_STATE(1155)] = 31531, + [SMALL_STATE(1156)] = 31620, + [SMALL_STATE(1157)] = 31709, + [SMALL_STATE(1158)] = 31778, + [SMALL_STATE(1159)] = 31837, + [SMALL_STATE(1160)] = 31918, + [SMALL_STATE(1161)] = 32001, + [SMALL_STATE(1162)] = 32066, + [SMALL_STATE(1163)] = 32143, + [SMALL_STATE(1164)] = 32222, + [SMALL_STATE(1165)] = 32303, + [SMALL_STATE(1166)] = 32366, + [SMALL_STATE(1167)] = 32425, + [SMALL_STATE(1168)] = 32498, + [SMALL_STATE(1169)] = 32583, + [SMALL_STATE(1170)] = 32672, + [SMALL_STATE(1171)] = 32761, + [SMALL_STATE(1172)] = 32850, + [SMALL_STATE(1173)] = 32939, + [SMALL_STATE(1174)] = 33008, + [SMALL_STATE(1175)] = 33067, + [SMALL_STATE(1176)] = 33148, + [SMALL_STATE(1177)] = 33231, + [SMALL_STATE(1178)] = 33296, + [SMALL_STATE(1179)] = 33373, + [SMALL_STATE(1180)] = 33452, + [SMALL_STATE(1181)] = 33533, + [SMALL_STATE(1182)] = 33596, + [SMALL_STATE(1183)] = 33655, + [SMALL_STATE(1184)] = 33728, + [SMALL_STATE(1185)] = 33813, + [SMALL_STATE(1186)] = 33902, + [SMALL_STATE(1187)] = 33991, + [SMALL_STATE(1188)] = 34056, + [SMALL_STATE(1189)] = 34149, + [SMALL_STATE(1190)] = 34242, + [SMALL_STATE(1191)] = 34319, + [SMALL_STATE(1192)] = 34412, + [SMALL_STATE(1193)] = 34505, + [SMALL_STATE(1194)] = 34556, + [SMALL_STATE(1195)] = 34645, + [SMALL_STATE(1196)] = 34738, + [SMALL_STATE(1197)] = 34817, + [SMALL_STATE(1198)] = 34906, + [SMALL_STATE(1199)] = 34975, + [SMALL_STATE(1200)] = 35056, + [SMALL_STATE(1201)] = 35149, + [SMALL_STATE(1202)] = 35242, + [SMALL_STATE(1203)] = 35293, + [SMALL_STATE(1204)] = 35344, + [SMALL_STATE(1205)] = 35433, + [SMALL_STATE(1206)] = 35492, + [SMALL_STATE(1207)] = 35581, + [SMALL_STATE(1208)] = 35650, + [SMALL_STATE(1209)] = 35709, + [SMALL_STATE(1210)] = 35790, + [SMALL_STATE(1211)] = 35873, + [SMALL_STATE(1212)] = 35938, + [SMALL_STATE(1213)] = 36015, + [SMALL_STATE(1214)] = 36094, + [SMALL_STATE(1215)] = 36175, + [SMALL_STATE(1216)] = 36238, + [SMALL_STATE(1217)] = 36297, + [SMALL_STATE(1218)] = 36386, + [SMALL_STATE(1219)] = 36459, + [SMALL_STATE(1220)] = 36552, + [SMALL_STATE(1221)] = 36641, + [SMALL_STATE(1222)] = 36734, + [SMALL_STATE(1223)] = 36819, + [SMALL_STATE(1224)] = 36908, + [SMALL_STATE(1225)] = 36997, + [SMALL_STATE(1226)] = 37086, + [SMALL_STATE(1227)] = 37175, + [SMALL_STATE(1228)] = 37268, + [SMALL_STATE(1229)] = 37361, + [SMALL_STATE(1230)] = 37454, + [SMALL_STATE(1231)] = 37543, + [SMALL_STATE(1232)] = 37632, + [SMALL_STATE(1233)] = 37721, + [SMALL_STATE(1234)] = 37814, + [SMALL_STATE(1235)] = 37907, + [SMALL_STATE(1236)] = 37996, + [SMALL_STATE(1237)] = 38089, + [SMALL_STATE(1238)] = 38182, + [SMALL_STATE(1239)] = 38271, + [SMALL_STATE(1240)] = 38364, + [SMALL_STATE(1241)] = 38457, + [SMALL_STATE(1242)] = 38538, + [SMALL_STATE(1243)] = 38631, + [SMALL_STATE(1244)] = 38720, + [SMALL_STATE(1245)] = 38803, + [SMALL_STATE(1246)] = 38896, + [SMALL_STATE(1247)] = 38961, + [SMALL_STATE(1248)] = 39050, + [SMALL_STATE(1249)] = 39129, + [SMALL_STATE(1250)] = 39210, + [SMALL_STATE(1251)] = 39273, + [SMALL_STATE(1252)] = 39332, + [SMALL_STATE(1253)] = 39425, + [SMALL_STATE(1254)] = 39514, + [SMALL_STATE(1255)] = 39607, + [SMALL_STATE(1256)] = 39696, + [SMALL_STATE(1257)] = 39785, + [SMALL_STATE(1258)] = 39874, + [SMALL_STATE(1259)] = 39963, + [SMALL_STATE(1260)] = 40036, + [SMALL_STATE(1261)] = 40129, + [SMALL_STATE(1262)] = 40214, + [SMALL_STATE(1263)] = 40277, + [SMALL_STATE(1264)] = 40370, + [SMALL_STATE(1265)] = 40429, + [SMALL_STATE(1266)] = 40502, + [SMALL_STATE(1267)] = 40591, + [SMALL_STATE(1268)] = 40676, + [SMALL_STATE(1269)] = 40765, + [SMALL_STATE(1270)] = 40854, + [SMALL_STATE(1271)] = 40943, + [SMALL_STATE(1272)] = 41032, + [SMALL_STATE(1273)] = 41125, + [SMALL_STATE(1274)] = 41214, + [SMALL_STATE(1275)] = 41303, + [SMALL_STATE(1276)] = 41392, + [SMALL_STATE(1277)] = 41481, + [SMALL_STATE(1278)] = 41570, + [SMALL_STATE(1279)] = 41659, + [SMALL_STATE(1280)] = 41748, + [SMALL_STATE(1281)] = 41837, + [SMALL_STATE(1282)] = 41926, + [SMALL_STATE(1283)] = 41995, + [SMALL_STATE(1284)] = 42064, + [SMALL_STATE(1285)] = 42153, + [SMALL_STATE(1286)] = 42212, + [SMALL_STATE(1287)] = 42293, + [SMALL_STATE(1288)] = 42382, + [SMALL_STATE(1289)] = 42471, + [SMALL_STATE(1290)] = 42560, + [SMALL_STATE(1291)] = 42649, + [SMALL_STATE(1292)] = 42732, + [SMALL_STATE(1293)] = 42797, + [SMALL_STATE(1294)] = 42874, + [SMALL_STATE(1295)] = 42953, + [SMALL_STATE(1296)] = 43034, + [SMALL_STATE(1297)] = 43097, + [SMALL_STATE(1298)] = 43156, + [SMALL_STATE(1299)] = 43229, + [SMALL_STATE(1300)] = 43318, + [SMALL_STATE(1301)] = 43403, + [SMALL_STATE(1302)] = 43462, + [SMALL_STATE(1303)] = 43555, + [SMALL_STATE(1304)] = 43644, + [SMALL_STATE(1305)] = 43737, + [SMALL_STATE(1306)] = 43826, + [SMALL_STATE(1307)] = 43919, + [SMALL_STATE(1308)] = 44008, + [SMALL_STATE(1309)] = 44097, + [SMALL_STATE(1310)] = 44186, + [SMALL_STATE(1311)] = 44255, + [SMALL_STATE(1312)] = 44314, + [SMALL_STATE(1313)] = 44395, + [SMALL_STATE(1314)] = 44478, + [SMALL_STATE(1315)] = 44543, + [SMALL_STATE(1316)] = 44636, + [SMALL_STATE(1317)] = 44713, + [SMALL_STATE(1318)] = 44806, + [SMALL_STATE(1319)] = 44899, + [SMALL_STATE(1320)] = 44992, + [SMALL_STATE(1321)] = 45085, + [SMALL_STATE(1322)] = 45178, + [SMALL_STATE(1323)] = 45271, + [SMALL_STATE(1324)] = 45364, + [SMALL_STATE(1325)] = 45457, + [SMALL_STATE(1326)] = 45536, + [SMALL_STATE(1327)] = 45617, + [SMALL_STATE(1328)] = 45710, + [SMALL_STATE(1329)] = 45773, + [SMALL_STATE(1330)] = 45862, + [SMALL_STATE(1331)] = 45955, + [SMALL_STATE(1332)] = 46048, + [SMALL_STATE(1333)] = 46107, + [SMALL_STATE(1334)] = 46200, + [SMALL_STATE(1335)] = 46289, + [SMALL_STATE(1336)] = 46378, + [SMALL_STATE(1337)] = 46467, + [SMALL_STATE(1338)] = 46560, + [SMALL_STATE(1339)] = 46637, + [SMALL_STATE(1340)] = 46725, + [SMALL_STATE(1341)] = 46813, + [SMALL_STATE(1342)] = 46901, + [SMALL_STATE(1343)] = 46989, + [SMALL_STATE(1344)] = 47077, + [SMALL_STATE(1345)] = 47165, + [SMALL_STATE(1346)] = 47233, + [SMALL_STATE(1347)] = 47291, + [SMALL_STATE(1348)] = 47371, + [SMALL_STATE(1349)] = 47453, + [SMALL_STATE(1350)] = 47517, + [SMALL_STATE(1351)] = 47595, + [SMALL_STATE(1352)] = 47675, + [SMALL_STATE(1353)] = 47737, + [SMALL_STATE(1354)] = 47795, + [SMALL_STATE(1355)] = 47867, + [SMALL_STATE(1356)] = 47951, + [SMALL_STATE(1357)] = 48039, + [SMALL_STATE(1358)] = 48127, + [SMALL_STATE(1359)] = 48173, + [SMALL_STATE(1360)] = 48261, + [SMALL_STATE(1361)] = 48349, + [SMALL_STATE(1362)] = 48437, + [SMALL_STATE(1363)] = 48505, + [SMALL_STATE(1364)] = 48563, + [SMALL_STATE(1365)] = 48643, + [SMALL_STATE(1366)] = 48725, + [SMALL_STATE(1367)] = 48789, + [SMALL_STATE(1368)] = 48865, + [SMALL_STATE(1369)] = 48943, + [SMALL_STATE(1370)] = 49023, + [SMALL_STATE(1371)] = 49085, + [SMALL_STATE(1372)] = 49143, + [SMALL_STATE(1373)] = 49215, + [SMALL_STATE(1374)] = 49299, + [SMALL_STATE(1375)] = 49387, + [SMALL_STATE(1376)] = 49475, + [SMALL_STATE(1377)] = 49563, + [SMALL_STATE(1378)] = 49651, + [SMALL_STATE(1379)] = 49739, + [SMALL_STATE(1380)] = 49807, + [SMALL_STATE(1381)] = 49865, + [SMALL_STATE(1382)] = 49945, + [SMALL_STATE(1383)] = 50027, + [SMALL_STATE(1384)] = 50091, + [SMALL_STATE(1385)] = 50167, + [SMALL_STATE(1386)] = 50245, + [SMALL_STATE(1387)] = 50325, + [SMALL_STATE(1388)] = 50387, + [SMALL_STATE(1389)] = 50445, + [SMALL_STATE(1390)] = 50517, + [SMALL_STATE(1391)] = 50601, + [SMALL_STATE(1392)] = 50689, + [SMALL_STATE(1393)] = 50777, + [SMALL_STATE(1394)] = 50865, + [SMALL_STATE(1395)] = 50953, + [SMALL_STATE(1396)] = 51041, + [SMALL_STATE(1397)] = 51129, + [SMALL_STATE(1398)] = 51217, + [SMALL_STATE(1399)] = 51305, + [SMALL_STATE(1400)] = 51393, + [SMALL_STATE(1401)] = 51481, + [SMALL_STATE(1402)] = 51549, + [SMALL_STATE(1403)] = 51607, + [SMALL_STATE(1404)] = 51695, + [SMALL_STATE(1405)] = 51775, + [SMALL_STATE(1406)] = 51857, + [SMALL_STATE(1407)] = 51921, + [SMALL_STATE(1408)] = 51997, + [SMALL_STATE(1409)] = 52075, + [SMALL_STATE(1410)] = 52163, + [SMALL_STATE(1411)] = 52243, + [SMALL_STATE(1412)] = 52305, + [SMALL_STATE(1413)] = 52363, + [SMALL_STATE(1414)] = 52435, + [SMALL_STATE(1415)] = 52519, + [SMALL_STATE(1416)] = 52607, + [SMALL_STATE(1417)] = 52695, + [SMALL_STATE(1418)] = 52783, + [SMALL_STATE(1419)] = 52871, + [SMALL_STATE(1420)] = 52939, + [SMALL_STATE(1421)] = 52997, + [SMALL_STATE(1422)] = 53077, + [SMALL_STATE(1423)] = 53159, + [SMALL_STATE(1424)] = 53247, + [SMALL_STATE(1425)] = 53335, + [SMALL_STATE(1426)] = 53423, + [SMALL_STATE(1427)] = 53511, + [SMALL_STATE(1428)] = 53575, + [SMALL_STATE(1429)] = 53651, + [SMALL_STATE(1430)] = 53729, + [SMALL_STATE(1431)] = 53809, + [SMALL_STATE(1432)] = 53871, + [SMALL_STATE(1433)] = 53959, + [SMALL_STATE(1434)] = 54017, + [SMALL_STATE(1435)] = 54105, + [SMALL_STATE(1436)] = 54193, + [SMALL_STATE(1437)] = 54281, + [SMALL_STATE(1438)] = 54369, + [SMALL_STATE(1439)] = 54441, + [SMALL_STATE(1440)] = 54525, + [SMALL_STATE(1441)] = 54613, + [SMALL_STATE(1442)] = 54701, + [SMALL_STATE(1443)] = 54789, + [SMALL_STATE(1444)] = 54877, + [SMALL_STATE(1445)] = 54965, + [SMALL_STATE(1446)] = 55053, + [SMALL_STATE(1447)] = 55141, + [SMALL_STATE(1448)] = 55229, + [SMALL_STATE(1449)] = 55317, + [SMALL_STATE(1450)] = 55405, + [SMALL_STATE(1451)] = 55493, + [SMALL_STATE(1452)] = 55581, + [SMALL_STATE(1453)] = 55669, + [SMALL_STATE(1454)] = 55757, + [SMALL_STATE(1455)] = 55845, + [SMALL_STATE(1456)] = 55933, + [SMALL_STATE(1457)] = 56001, + [SMALL_STATE(1458)] = 56059, + [SMALL_STATE(1459)] = 56147, + [SMALL_STATE(1460)] = 56227, + [SMALL_STATE(1461)] = 56315, + [SMALL_STATE(1462)] = 56403, + [SMALL_STATE(1463)] = 56491, + [SMALL_STATE(1464)] = 56579, + [SMALL_STATE(1465)] = 56667, + [SMALL_STATE(1466)] = 56755, + [SMALL_STATE(1467)] = 56845, + [SMALL_STATE(1468)] = 56927, + [SMALL_STATE(1469)] = 57015, + [SMALL_STATE(1470)] = 57103, + [SMALL_STATE(1471)] = 57167, + [SMALL_STATE(1472)] = 57243, + [SMALL_STATE(1473)] = 57321, + [SMALL_STATE(1474)] = 57401, + [SMALL_STATE(1475)] = 57463, + [SMALL_STATE(1476)] = 57521, + [SMALL_STATE(1477)] = 57593, + [SMALL_STATE(1478)] = 57677, + [SMALL_STATE(1479)] = 57765, + [SMALL_STATE(1480)] = 57853, + [SMALL_STATE(1481)] = 57929, + [SMALL_STATE(1482)] = 58016, + [SMALL_STATE(1483)] = 58103, + [SMALL_STATE(1484)] = 58190, + [SMALL_STATE(1485)] = 58277, + [SMALL_STATE(1486)] = 58364, + [SMALL_STATE(1487)] = 58451, + [SMALL_STATE(1488)] = 58538, + [SMALL_STATE(1489)] = 58625, + [SMALL_STATE(1490)] = 58712, + [SMALL_STATE(1491)] = 58779, + [SMALL_STATE(1492)] = 58866, + [SMALL_STATE(1493)] = 58923, + [SMALL_STATE(1494)] = 59002, + [SMALL_STATE(1495)] = 59083, + [SMALL_STATE(1496)] = 59170, + [SMALL_STATE(1497)] = 59257, + [SMALL_STATE(1498)] = 59320, + [SMALL_STATE(1499)] = 59395, + [SMALL_STATE(1500)] = 59472, + [SMALL_STATE(1501)] = 59559, + [SMALL_STATE(1502)] = 59646, + [SMALL_STATE(1503)] = 59725, + [SMALL_STATE(1504)] = 59786, + [SMALL_STATE(1505)] = 59875, + [SMALL_STATE(1506)] = 59932, + [SMALL_STATE(1507)] = 60019, + [SMALL_STATE(1508)] = 60106, + [SMALL_STATE(1509)] = 60177, + [SMALL_STATE(1510)] = 60264, + [SMALL_STATE(1511)] = 60347, + [SMALL_STATE(1512)] = 60434, + [SMALL_STATE(1513)] = 60521, + [SMALL_STATE(1514)] = 60608, + [SMALL_STATE(1515)] = 60695, + [SMALL_STATE(1516)] = 60782, + [SMALL_STATE(1517)] = 60869, + [SMALL_STATE(1518)] = 60956, + [SMALL_STATE(1519)] = 61023, + [SMALL_STATE(1520)] = 61110, + [SMALL_STATE(1521)] = 61167, + [SMALL_STATE(1522)] = 61246, + [SMALL_STATE(1523)] = 61327, + [SMALL_STATE(1524)] = 61390, + [SMALL_STATE(1525)] = 61477, + [SMALL_STATE(1526)] = 61552, + [SMALL_STATE(1527)] = 61629, + [SMALL_STATE(1528)] = 61708, + [SMALL_STATE(1529)] = 61769, + [SMALL_STATE(1530)] = 61856, + [SMALL_STATE(1531)] = 61913, + [SMALL_STATE(1532)] = 61984, + [SMALL_STATE(1533)] = 62071, + [SMALL_STATE(1534)] = 62154, + [SMALL_STATE(1535)] = 62241, + [SMALL_STATE(1536)] = 62328, + [SMALL_STATE(1537)] = 62415, + [SMALL_STATE(1538)] = 62502, + [SMALL_STATE(1539)] = 62589, + [SMALL_STATE(1540)] = 62676, + [SMALL_STATE(1541)] = 62763, + [SMALL_STATE(1542)] = 62850, + [SMALL_STATE(1543)] = 62937, + [SMALL_STATE(1544)] = 63024, + [SMALL_STATE(1545)] = 63111, + [SMALL_STATE(1546)] = 63198, + [SMALL_STATE(1547)] = 63285, + [SMALL_STATE(1548)] = 63372, + [SMALL_STATE(1549)] = 63459, + [SMALL_STATE(1550)] = 63529, + [SMALL_STATE(1551)] = 63595, + [SMALL_STATE(1552)] = 63679, + [SMALL_STATE(1553)] = 63735, + [SMALL_STATE(1554)] = 63815, + [SMALL_STATE(1555)] = 63877, + [SMALL_STATE(1556)] = 63961, + [SMALL_STATE(1557)] = 64045, + [SMALL_STATE(1558)] = 64127, + [SMALL_STATE(1559)] = 64211, + [SMALL_STATE(1560)] = 64295, + [SMALL_STATE(1561)] = 64371, + [SMALL_STATE(1562)] = 64431, + [SMALL_STATE(1563)] = 64487, + [SMALL_STATE(1564)] = 64565, + [SMALL_STATE(1565)] = 64649, + [SMALL_STATE(1566)] = 64727, + [SMALL_STATE(1567)] = 64811, + [SMALL_STATE(1568)] = 64885, + [SMALL_STATE(1569)] = 64964, + [SMALL_STATE(1570)] = 65035, + [SMALL_STATE(1571)] = 65101, + [SMALL_STATE(1572)] = 65173, + [SMALL_STATE(1573)] = 65245, + [SMALL_STATE(1574)] = 65317, + [SMALL_STATE(1575)] = 65389, + [SMALL_STATE(1576)] = 65461, + [SMALL_STATE(1577)] = 65533, + [SMALL_STATE(1578)] = 65605, + [SMALL_STATE(1579)] = 65667, + [SMALL_STATE(1580)] = 65721, + [SMALL_STATE(1581)] = 65775, + [SMALL_STATE(1582)] = 65824, + [SMALL_STATE(1583)] = 65879, + [SMALL_STATE(1584)] = 65932, + [SMALL_STATE(1585)] = 65987, + [SMALL_STATE(1586)] = 66043, + [SMALL_STATE(1587)] = 66099, + [SMALL_STATE(1588)] = 66132, + [SMALL_STATE(1589)] = 66175, + [SMALL_STATE(1590)] = 66221, + [SMALL_STATE(1591)] = 66247, + [SMALL_STATE(1592)] = 66293, + [SMALL_STATE(1593)] = 66325, + [SMALL_STATE(1594)] = 66350, + [SMALL_STATE(1595)] = 66375, + [SMALL_STATE(1596)] = 66416, + [SMALL_STATE(1597)] = 66443, + [SMALL_STATE(1598)] = 66468, + [SMALL_STATE(1599)] = 66493, + [SMALL_STATE(1600)] = 66518, + [SMALL_STATE(1601)] = 66543, + [SMALL_STATE(1602)] = 66568, + [SMALL_STATE(1603)] = 66593, + [SMALL_STATE(1604)] = 66636, + [SMALL_STATE(1605)] = 66661, + [SMALL_STATE(1606)] = 66704, + [SMALL_STATE(1607)] = 66729, + [SMALL_STATE(1608)] = 66754, + [SMALL_STATE(1609)] = 66797, + [SMALL_STATE(1610)] = 66822, + [SMALL_STATE(1611)] = 66847, + [SMALL_STATE(1612)] = 66872, + [SMALL_STATE(1613)] = 66897, + [SMALL_STATE(1614)] = 66922, + [SMALL_STATE(1615)] = 66947, + [SMALL_STATE(1616)] = 66972, + [SMALL_STATE(1617)] = 66997, + [SMALL_STATE(1618)] = 67024, + [SMALL_STATE(1619)] = 67065, + [SMALL_STATE(1620)] = 67090, + [SMALL_STATE(1621)] = 67115, + [SMALL_STATE(1622)] = 67140, + [SMALL_STATE(1623)] = 67165, + [SMALL_STATE(1624)] = 67190, + [SMALL_STATE(1625)] = 67215, + [SMALL_STATE(1626)] = 67258, + [SMALL_STATE(1627)] = 67283, + [SMALL_STATE(1628)] = 67308, + [SMALL_STATE(1629)] = 67333, + [SMALL_STATE(1630)] = 67355, + [SMALL_STATE(1631)] = 67377, + [SMALL_STATE(1632)] = 67399, + [SMALL_STATE(1633)] = 67421, + [SMALL_STATE(1634)] = 67443, + [SMALL_STATE(1635)] = 67467, + [SMALL_STATE(1636)] = 67489, + [SMALL_STATE(1637)] = 67513, + [SMALL_STATE(1638)] = 67535, + [SMALL_STATE(1639)] = 67559, + [SMALL_STATE(1640)] = 67583, + [SMALL_STATE(1641)] = 67605, + [SMALL_STATE(1642)] = 67627, + [SMALL_STATE(1643)] = 67651, + [SMALL_STATE(1644)] = 67673, + [SMALL_STATE(1645)] = 67695, + [SMALL_STATE(1646)] = 67719, + [SMALL_STATE(1647)] = 67741, + [SMALL_STATE(1648)] = 67765, + [SMALL_STATE(1649)] = 67787, + [SMALL_STATE(1650)] = 67809, + [SMALL_STATE(1651)] = 67831, + [SMALL_STATE(1652)] = 67855, + [SMALL_STATE(1653)] = 67877, + [SMALL_STATE(1654)] = 67899, + [SMALL_STATE(1655)] = 67943, + [SMALL_STATE(1656)] = 67965, + [SMALL_STATE(1657)] = 67989, + [SMALL_STATE(1658)] = 68015, + [SMALL_STATE(1659)] = 68039, + [SMALL_STATE(1660)] = 68063, + [SMALL_STATE(1661)] = 68085, + [SMALL_STATE(1662)] = 68109, + [SMALL_STATE(1663)] = 68150, + [SMALL_STATE(1664)] = 68191, + [SMALL_STATE(1665)] = 68232, + [SMALL_STATE(1666)] = 68271, + [SMALL_STATE(1667)] = 68312, + [SMALL_STATE(1668)] = 68351, + [SMALL_STATE(1669)] = 68392, + [SMALL_STATE(1670)] = 68433, + [SMALL_STATE(1671)] = 68467, + [SMALL_STATE(1672)] = 68501, + [SMALL_STATE(1673)] = 68535, + [SMALL_STATE(1674)] = 68569, + [SMALL_STATE(1675)] = 68603, + [SMALL_STATE(1676)] = 68637, + [SMALL_STATE(1677)] = 68677, + [SMALL_STATE(1678)] = 68710, + [SMALL_STATE(1679)] = 68749, + [SMALL_STATE(1680)] = 68788, + [SMALL_STATE(1681)] = 68827, + [SMALL_STATE(1682)] = 68866, + [SMALL_STATE(1683)] = 68898, + [SMALL_STATE(1684)] = 68930, + [SMALL_STATE(1685)] = 68960, + [SMALL_STATE(1686)] = 68992, + [SMALL_STATE(1687)] = 69024, + [SMALL_STATE(1688)] = 69056, + [SMALL_STATE(1689)] = 69092, + [SMALL_STATE(1690)] = 69124, + [SMALL_STATE(1691)] = 69160, + [SMALL_STATE(1692)] = 69192, + [SMALL_STATE(1693)] = 69222, + [SMALL_STATE(1694)] = 69254, + [SMALL_STATE(1695)] = 69284, + [SMALL_STATE(1696)] = 69314, + [SMALL_STATE(1697)] = 69350, + [SMALL_STATE(1698)] = 69386, + [SMALL_STATE(1699)] = 69418, + [SMALL_STATE(1700)] = 69448, + [SMALL_STATE(1701)] = 69484, + [SMALL_STATE(1702)] = 69514, + [SMALL_STATE(1703)] = 69550, + [SMALL_STATE(1704)] = 69586, + [SMALL_STATE(1705)] = 69616, + [SMALL_STATE(1706)] = 69652, + [SMALL_STATE(1707)] = 69684, + [SMALL_STATE(1708)] = 69716, + [SMALL_STATE(1709)] = 69746, + [SMALL_STATE(1710)] = 69778, + [SMALL_STATE(1711)] = 69810, + [SMALL_STATE(1712)] = 69842, + [SMALL_STATE(1713)] = 69874, + [SMALL_STATE(1714)] = 69906, + [SMALL_STATE(1715)] = 69938, + [SMALL_STATE(1716)] = 69970, + [SMALL_STATE(1717)] = 70002, + [SMALL_STATE(1718)] = 70034, + [SMALL_STATE(1719)] = 70066, + [SMALL_STATE(1720)] = 70098, + [SMALL_STATE(1721)] = 70131, + [SMALL_STATE(1722)] = 70164, + [SMALL_STATE(1723)] = 70193, + [SMALL_STATE(1724)] = 70222, + [SMALL_STATE(1725)] = 70251, + [SMALL_STATE(1726)] = 70284, + [SMALL_STATE(1727)] = 70317, + [SMALL_STATE(1728)] = 70350, + [SMALL_STATE(1729)] = 70383, + [SMALL_STATE(1730)] = 70416, + [SMALL_STATE(1731)] = 70449, + [SMALL_STATE(1732)] = 70482, + [SMALL_STATE(1733)] = 70515, + [SMALL_STATE(1734)] = 70548, + [SMALL_STATE(1735)] = 70581, + [SMALL_STATE(1736)] = 70614, + [SMALL_STATE(1737)] = 70643, + [SMALL_STATE(1738)] = 70670, + [SMALL_STATE(1739)] = 70701, + [SMALL_STATE(1740)] = 70730, + [SMALL_STATE(1741)] = 70759, + [SMALL_STATE(1742)] = 70792, + [SMALL_STATE(1743)] = 70821, + [SMALL_STATE(1744)] = 70854, + [SMALL_STATE(1745)] = 70883, + [SMALL_STATE(1746)] = 70916, + [SMALL_STATE(1747)] = 70949, + [SMALL_STATE(1748)] = 70978, + [SMALL_STATE(1749)] = 71007, + [SMALL_STATE(1750)] = 71036, + [SMALL_STATE(1751)] = 71065, + [SMALL_STATE(1752)] = 71098, + [SMALL_STATE(1753)] = 71131, + [SMALL_STATE(1754)] = 71160, + [SMALL_STATE(1755)] = 71193, + [SMALL_STATE(1756)] = 71226, + [SMALL_STATE(1757)] = 71256, + [SMALL_STATE(1758)] = 71282, + [SMALL_STATE(1759)] = 71308, + [SMALL_STATE(1760)] = 71334, + [SMALL_STATE(1761)] = 71364, + [SMALL_STATE(1762)] = 71390, + [SMALL_STATE(1763)] = 71413, + [SMALL_STATE(1764)] = 71436, + [SMALL_STATE(1765)] = 71459, + [SMALL_STATE(1766)] = 71486, + [SMALL_STATE(1767)] = 71509, + [SMALL_STATE(1768)] = 71535, + [SMALL_STATE(1769)] = 71559, + [SMALL_STATE(1770)] = 71573, + [SMALL_STATE(1771)] = 71587, + [SMALL_STATE(1772)] = 71607, + [SMALL_STATE(1773)] = 71631, + [SMALL_STATE(1774)] = 71651, + [SMALL_STATE(1775)] = 71675, + [SMALL_STATE(1776)] = 71689, + [SMALL_STATE(1777)] = 71709, + [SMALL_STATE(1778)] = 71729, + [SMALL_STATE(1779)] = 71753, + [SMALL_STATE(1780)] = 71767, + [SMALL_STATE(1781)] = 71789, + [SMALL_STATE(1782)] = 71813, + [SMALL_STATE(1783)] = 71833, + [SMALL_STATE(1784)] = 71853, + [SMALL_STATE(1785)] = 71867, + [SMALL_STATE(1786)] = 71891, + [SMALL_STATE(1787)] = 71914, + [SMALL_STATE(1788)] = 71927, + [SMALL_STATE(1789)] = 71946, + [SMALL_STATE(1790)] = 71969, + [SMALL_STATE(1791)] = 71986, + [SMALL_STATE(1792)] = 71999, + [SMALL_STATE(1793)] = 72018, + [SMALL_STATE(1794)] = 72041, + [SMALL_STATE(1795)] = 72064, + [SMALL_STATE(1796)] = 72087, + [SMALL_STATE(1797)] = 72100, + [SMALL_STATE(1798)] = 72113, + [SMALL_STATE(1799)] = 72132, + [SMALL_STATE(1800)] = 72151, + [SMALL_STATE(1801)] = 72174, + [SMALL_STATE(1802)] = 72195, + [SMALL_STATE(1803)] = 72214, + [SMALL_STATE(1804)] = 72237, + [SMALL_STATE(1805)] = 72260, + [SMALL_STATE(1806)] = 72283, + [SMALL_STATE(1807)] = 72304, + [SMALL_STATE(1808)] = 72319, + [SMALL_STATE(1809)] = 72332, + [SMALL_STATE(1810)] = 72355, + [SMALL_STATE(1811)] = 72370, + [SMALL_STATE(1812)] = 72389, + [SMALL_STATE(1813)] = 72410, + [SMALL_STATE(1814)] = 72431, + [SMALL_STATE(1815)] = 72444, + [SMALL_STATE(1816)] = 72457, + [SMALL_STATE(1817)] = 72470, + [SMALL_STATE(1818)] = 72483, + [SMALL_STATE(1819)] = 72506, + [SMALL_STATE(1820)] = 72529, + [SMALL_STATE(1821)] = 72552, + [SMALL_STATE(1822)] = 72575, + [SMALL_STATE(1823)] = 72598, + [SMALL_STATE(1824)] = 72621, + [SMALL_STATE(1825)] = 72644, + [SMALL_STATE(1826)] = 72667, + [SMALL_STATE(1827)] = 72690, + [SMALL_STATE(1828)] = 72703, + [SMALL_STATE(1829)] = 72722, + [SMALL_STATE(1830)] = 72741, + [SMALL_STATE(1831)] = 72755, + [SMALL_STATE(1832)] = 72767, + [SMALL_STATE(1833)] = 72781, + [SMALL_STATE(1834)] = 72801, + [SMALL_STATE(1835)] = 72821, + [SMALL_STATE(1836)] = 72837, + [SMALL_STATE(1837)] = 72851, + [SMALL_STATE(1838)] = 72865, + [SMALL_STATE(1839)] = 72879, + [SMALL_STATE(1840)] = 72899, + [SMALL_STATE(1841)] = 72913, + [SMALL_STATE(1842)] = 72929, + [SMALL_STATE(1843)] = 72949, + [SMALL_STATE(1844)] = 72963, + [SMALL_STATE(1845)] = 72981, + [SMALL_STATE(1846)] = 72995, + [SMALL_STATE(1847)] = 73009, + [SMALL_STATE(1848)] = 73023, + [SMALL_STATE(1849)] = 73037, + [SMALL_STATE(1850)] = 73051, + [SMALL_STATE(1851)] = 73071, + [SMALL_STATE(1852)] = 73085, + [SMALL_STATE(1853)] = 73099, + [SMALL_STATE(1854)] = 73111, + [SMALL_STATE(1855)] = 73125, + [SMALL_STATE(1856)] = 73139, + [SMALL_STATE(1857)] = 73153, + [SMALL_STATE(1858)] = 73169, + [SMALL_STATE(1859)] = 73183, + [SMALL_STATE(1860)] = 73197, + [SMALL_STATE(1861)] = 73209, + [SMALL_STATE(1862)] = 73223, + [SMALL_STATE(1863)] = 73237, + [SMALL_STATE(1864)] = 73257, + [SMALL_STATE(1865)] = 73271, + [SMALL_STATE(1866)] = 73285, + [SMALL_STATE(1867)] = 73299, + [SMALL_STATE(1868)] = 73313, + [SMALL_STATE(1869)] = 73327, + [SMALL_STATE(1870)] = 73347, + [SMALL_STATE(1871)] = 73367, + [SMALL_STATE(1872)] = 73387, + [SMALL_STATE(1873)] = 73401, + [SMALL_STATE(1874)] = 73415, + [SMALL_STATE(1875)] = 73429, + [SMALL_STATE(1876)] = 73443, + [SMALL_STATE(1877)] = 73457, + [SMALL_STATE(1878)] = 73477, + [SMALL_STATE(1879)] = 73491, + [SMALL_STATE(1880)] = 73511, + [SMALL_STATE(1881)] = 73531, + [SMALL_STATE(1882)] = 73551, + [SMALL_STATE(1883)] = 73565, + [SMALL_STATE(1884)] = 73579, + [SMALL_STATE(1885)] = 73593, + [SMALL_STATE(1886)] = 73610, + [SMALL_STATE(1887)] = 73627, + [SMALL_STATE(1888)] = 73644, + [SMALL_STATE(1889)] = 73661, + [SMALL_STATE(1890)] = 73678, + [SMALL_STATE(1891)] = 73695, + [SMALL_STATE(1892)] = 73710, + [SMALL_STATE(1893)] = 73727, + [SMALL_STATE(1894)] = 73742, + [SMALL_STATE(1895)] = 73759, + [SMALL_STATE(1896)] = 73776, + [SMALL_STATE(1897)] = 73793, + [SMALL_STATE(1898)] = 73804, + [SMALL_STATE(1899)] = 73821, + [SMALL_STATE(1900)] = 73838, + [SMALL_STATE(1901)] = 73855, + [SMALL_STATE(1902)] = 73872, + [SMALL_STATE(1903)] = 73883, + [SMALL_STATE(1904)] = 73900, + [SMALL_STATE(1905)] = 73917, + [SMALL_STATE(1906)] = 73932, + [SMALL_STATE(1907)] = 73949, + [SMALL_STATE(1908)] = 73960, + [SMALL_STATE(1909)] = 73977, + [SMALL_STATE(1910)] = 73994, + [SMALL_STATE(1911)] = 74011, + [SMALL_STATE(1912)] = 74028, + [SMALL_STATE(1913)] = 74045, + [SMALL_STATE(1914)] = 74060, + [SMALL_STATE(1915)] = 74075, + [SMALL_STATE(1916)] = 74090, + [SMALL_STATE(1917)] = 74107, + [SMALL_STATE(1918)] = 74124, + [SMALL_STATE(1919)] = 74141, + [SMALL_STATE(1920)] = 74158, + [SMALL_STATE(1921)] = 74169, + [SMALL_STATE(1922)] = 74186, + [SMALL_STATE(1923)] = 74203, + [SMALL_STATE(1924)] = 74222, + [SMALL_STATE(1925)] = 74239, + [SMALL_STATE(1926)] = 74256, + [SMALL_STATE(1927)] = 74273, + [SMALL_STATE(1928)] = 74290, + [SMALL_STATE(1929)] = 74307, + [SMALL_STATE(1930)] = 74322, + [SMALL_STATE(1931)] = 74337, + [SMALL_STATE(1932)] = 74354, + [SMALL_STATE(1933)] = 74365, + [SMALL_STATE(1934)] = 74382, + [SMALL_STATE(1935)] = 74393, + [SMALL_STATE(1936)] = 74410, + [SMALL_STATE(1937)] = 74425, + [SMALL_STATE(1938)] = 74442, + [SMALL_STATE(1939)] = 74459, + [SMALL_STATE(1940)] = 74476, + [SMALL_STATE(1941)] = 74493, + [SMALL_STATE(1942)] = 74508, + [SMALL_STATE(1943)] = 74523, + [SMALL_STATE(1944)] = 74540, + [SMALL_STATE(1945)] = 74559, + [SMALL_STATE(1946)] = 74578, + [SMALL_STATE(1947)] = 74595, + [SMALL_STATE(1948)] = 74610, + [SMALL_STATE(1949)] = 74625, + [SMALL_STATE(1950)] = 74642, + [SMALL_STATE(1951)] = 74659, + [SMALL_STATE(1952)] = 74676, + [SMALL_STATE(1953)] = 74695, + [SMALL_STATE(1954)] = 74714, + [SMALL_STATE(1955)] = 74731, + [SMALL_STATE(1956)] = 74748, + [SMALL_STATE(1957)] = 74763, + [SMALL_STATE(1958)] = 74780, + [SMALL_STATE(1959)] = 74797, + [SMALL_STATE(1960)] = 74810, + [SMALL_STATE(1961)] = 74825, + [SMALL_STATE(1962)] = 74844, + [SMALL_STATE(1963)] = 74856, + [SMALL_STATE(1964)] = 74866, + [SMALL_STATE(1965)] = 74880, + [SMALL_STATE(1966)] = 74890, + [SMALL_STATE(1967)] = 74904, + [SMALL_STATE(1968)] = 74918, + [SMALL_STATE(1969)] = 74932, + [SMALL_STATE(1970)] = 74946, + [SMALL_STATE(1971)] = 74956, + [SMALL_STATE(1972)] = 74970, + [SMALL_STATE(1973)] = 74982, + [SMALL_STATE(1974)] = 74996, + [SMALL_STATE(1975)] = 75010, + [SMALL_STATE(1976)] = 75024, + [SMALL_STATE(1977)] = 75034, + [SMALL_STATE(1978)] = 75046, + [SMALL_STATE(1979)] = 75060, + [SMALL_STATE(1980)] = 75074, + [SMALL_STATE(1981)] = 75088, + [SMALL_STATE(1982)] = 75100, + [SMALL_STATE(1983)] = 75114, + [SMALL_STATE(1984)] = 75128, + [SMALL_STATE(1985)] = 75142, + [SMALL_STATE(1986)] = 75154, + [SMALL_STATE(1987)] = 75168, + [SMALL_STATE(1988)] = 75182, + [SMALL_STATE(1989)] = 75194, + [SMALL_STATE(1990)] = 75208, + [SMALL_STATE(1991)] = 75222, + [SMALL_STATE(1992)] = 75236, + [SMALL_STATE(1993)] = 75248, + [SMALL_STATE(1994)] = 75262, + [SMALL_STATE(1995)] = 75276, + [SMALL_STATE(1996)] = 75290, + [SMALL_STATE(1997)] = 75304, + [SMALL_STATE(1998)] = 75318, + [SMALL_STATE(1999)] = 75332, + [SMALL_STATE(2000)] = 75346, + [SMALL_STATE(2001)] = 75360, + [SMALL_STATE(2002)] = 75374, + [SMALL_STATE(2003)] = 75388, + [SMALL_STATE(2004)] = 75402, + [SMALL_STATE(2005)] = 75416, + [SMALL_STATE(2006)] = 75428, + [SMALL_STATE(2007)] = 75440, + [SMALL_STATE(2008)] = 75454, + [SMALL_STATE(2009)] = 75466, + [SMALL_STATE(2010)] = 75480, + [SMALL_STATE(2011)] = 75494, + [SMALL_STATE(2012)] = 75508, + [SMALL_STATE(2013)] = 75522, + [SMALL_STATE(2014)] = 75534, + [SMALL_STATE(2015)] = 75548, + [SMALL_STATE(2016)] = 75562, + [SMALL_STATE(2017)] = 75574, + [SMALL_STATE(2018)] = 75588, + [SMALL_STATE(2019)] = 75602, + [SMALL_STATE(2020)] = 75616, + [SMALL_STATE(2021)] = 75626, + [SMALL_STATE(2022)] = 75640, + [SMALL_STATE(2023)] = 75654, + [SMALL_STATE(2024)] = 75666, + [SMALL_STATE(2025)] = 75678, + [SMALL_STATE(2026)] = 75692, + [SMALL_STATE(2027)] = 75702, + [SMALL_STATE(2028)] = 75716, + [SMALL_STATE(2029)] = 75730, + [SMALL_STATE(2030)] = 75744, + [SMALL_STATE(2031)] = 75758, + [SMALL_STATE(2032)] = 75772, + [SMALL_STATE(2033)] = 75786, + [SMALL_STATE(2034)] = 75798, + [SMALL_STATE(2035)] = 75812, + [SMALL_STATE(2036)] = 75826, + [SMALL_STATE(2037)] = 75840, + [SMALL_STATE(2038)] = 75854, + [SMALL_STATE(2039)] = 75866, + [SMALL_STATE(2040)] = 75880, + [SMALL_STATE(2041)] = 75894, + [SMALL_STATE(2042)] = 75906, + [SMALL_STATE(2043)] = 75920, + [SMALL_STATE(2044)] = 75934, + [SMALL_STATE(2045)] = 75944, + [SMALL_STATE(2046)] = 75958, + [SMALL_STATE(2047)] = 75972, + [SMALL_STATE(2048)] = 75986, + [SMALL_STATE(2049)] = 76000, + [SMALL_STATE(2050)] = 76014, + [SMALL_STATE(2051)] = 76028, + [SMALL_STATE(2052)] = 76042, + [SMALL_STATE(2053)] = 76056, + [SMALL_STATE(2054)] = 76066, + [SMALL_STATE(2055)] = 76080, + [SMALL_STATE(2056)] = 76094, + [SMALL_STATE(2057)] = 76108, + [SMALL_STATE(2058)] = 76122, + [SMALL_STATE(2059)] = 76136, + [SMALL_STATE(2060)] = 76150, + [SMALL_STATE(2061)] = 76164, + [SMALL_STATE(2062)] = 76178, + [SMALL_STATE(2063)] = 76192, + [SMALL_STATE(2064)] = 76206, + [SMALL_STATE(2065)] = 76220, + [SMALL_STATE(2066)] = 76234, + [SMALL_STATE(2067)] = 76248, + [SMALL_STATE(2068)] = 76262, + [SMALL_STATE(2069)] = 76276, + [SMALL_STATE(2070)] = 76290, + [SMALL_STATE(2071)] = 76304, + [SMALL_STATE(2072)] = 76315, + [SMALL_STATE(2073)] = 76326, + [SMALL_STATE(2074)] = 76337, + [SMALL_STATE(2075)] = 76348, + [SMALL_STATE(2076)] = 76359, + [SMALL_STATE(2077)] = 76370, + [SMALL_STATE(2078)] = 76381, + [SMALL_STATE(2079)] = 76392, + [SMALL_STATE(2080)] = 76403, + [SMALL_STATE(2081)] = 76412, + [SMALL_STATE(2082)] = 76421, + [SMALL_STATE(2083)] = 76430, + [SMALL_STATE(2084)] = 76439, + [SMALL_STATE(2085)] = 76450, + [SMALL_STATE(2086)] = 76459, + [SMALL_STATE(2087)] = 76470, + [SMALL_STATE(2088)] = 76481, + [SMALL_STATE(2089)] = 76492, + [SMALL_STATE(2090)] = 76503, + [SMALL_STATE(2091)] = 76514, + [SMALL_STATE(2092)] = 76525, + [SMALL_STATE(2093)] = 76534, + [SMALL_STATE(2094)] = 76545, + [SMALL_STATE(2095)] = 76554, + [SMALL_STATE(2096)] = 76565, + [SMALL_STATE(2097)] = 76576, + [SMALL_STATE(2098)] = 76587, + [SMALL_STATE(2099)] = 76598, + [SMALL_STATE(2100)] = 76609, + [SMALL_STATE(2101)] = 76620, + [SMALL_STATE(2102)] = 76631, + [SMALL_STATE(2103)] = 76640, + [SMALL_STATE(2104)] = 76649, + [SMALL_STATE(2105)] = 76660, + [SMALL_STATE(2106)] = 76669, + [SMALL_STATE(2107)] = 76680, + [SMALL_STATE(2108)] = 76691, + [SMALL_STATE(2109)] = 76702, + [SMALL_STATE(2110)] = 76713, + [SMALL_STATE(2111)] = 76724, + [SMALL_STATE(2112)] = 76735, + [SMALL_STATE(2113)] = 76746, + [SMALL_STATE(2114)] = 76757, + [SMALL_STATE(2115)] = 76768, + [SMALL_STATE(2116)] = 76779, + [SMALL_STATE(2117)] = 76790, + [SMALL_STATE(2118)] = 76801, + [SMALL_STATE(2119)] = 76812, + [SMALL_STATE(2120)] = 76821, + [SMALL_STATE(2121)] = 76832, + [SMALL_STATE(2122)] = 76843, + [SMALL_STATE(2123)] = 76854, + [SMALL_STATE(2124)] = 76865, + [SMALL_STATE(2125)] = 76874, + [SMALL_STATE(2126)] = 76883, + [SMALL_STATE(2127)] = 76894, + [SMALL_STATE(2128)] = 76903, + [SMALL_STATE(2129)] = 76914, + [SMALL_STATE(2130)] = 76923, + [SMALL_STATE(2131)] = 76932, + [SMALL_STATE(2132)] = 76943, + [SMALL_STATE(2133)] = 76954, + [SMALL_STATE(2134)] = 76965, + [SMALL_STATE(2135)] = 76976, + [SMALL_STATE(2136)] = 76985, + [SMALL_STATE(2137)] = 76996, + [SMALL_STATE(2138)] = 77007, + [SMALL_STATE(2139)] = 77018, + [SMALL_STATE(2140)] = 77029, + [SMALL_STATE(2141)] = 77040, + [SMALL_STATE(2142)] = 77051, + [SMALL_STATE(2143)] = 77062, + [SMALL_STATE(2144)] = 77073, + [SMALL_STATE(2145)] = 77084, + [SMALL_STATE(2146)] = 77095, + [SMALL_STATE(2147)] = 77106, + [SMALL_STATE(2148)] = 77117, + [SMALL_STATE(2149)] = 77128, + [SMALL_STATE(2150)] = 77139, + [SMALL_STATE(2151)] = 77150, + [SMALL_STATE(2152)] = 77159, + [SMALL_STATE(2153)] = 77170, + [SMALL_STATE(2154)] = 77179, + [SMALL_STATE(2155)] = 77190, + [SMALL_STATE(2156)] = 77201, + [SMALL_STATE(2157)] = 77212, + [SMALL_STATE(2158)] = 77223, + [SMALL_STATE(2159)] = 77234, + [SMALL_STATE(2160)] = 77245, + [SMALL_STATE(2161)] = 77254, + [SMALL_STATE(2162)] = 77265, + [SMALL_STATE(2163)] = 77276, + [SMALL_STATE(2164)] = 77287, + [SMALL_STATE(2165)] = 77298, + [SMALL_STATE(2166)] = 77309, + [SMALL_STATE(2167)] = 77318, + [SMALL_STATE(2168)] = 77329, + [SMALL_STATE(2169)] = 77340, + [SMALL_STATE(2170)] = 77351, + [SMALL_STATE(2171)] = 77362, + [SMALL_STATE(2172)] = 77373, + [SMALL_STATE(2173)] = 77384, + [SMALL_STATE(2174)] = 77395, + [SMALL_STATE(2175)] = 77406, + [SMALL_STATE(2176)] = 77417, + [SMALL_STATE(2177)] = 77428, + [SMALL_STATE(2178)] = 77439, + [SMALL_STATE(2179)] = 77450, + [SMALL_STATE(2180)] = 77461, + [SMALL_STATE(2181)] = 77472, + [SMALL_STATE(2182)] = 77483, + [SMALL_STATE(2183)] = 77494, + [SMALL_STATE(2184)] = 77505, + [SMALL_STATE(2185)] = 77516, + [SMALL_STATE(2186)] = 77527, + [SMALL_STATE(2187)] = 77538, + [SMALL_STATE(2188)] = 77549, + [SMALL_STATE(2189)] = 77560, + [SMALL_STATE(2190)] = 77569, + [SMALL_STATE(2191)] = 77578, + [SMALL_STATE(2192)] = 77587, + [SMALL_STATE(2193)] = 77598, + [SMALL_STATE(2194)] = 77609, + [SMALL_STATE(2195)] = 77620, + [SMALL_STATE(2196)] = 77629, + [SMALL_STATE(2197)] = 77640, + [SMALL_STATE(2198)] = 77651, + [SMALL_STATE(2199)] = 77660, + [SMALL_STATE(2200)] = 77671, + [SMALL_STATE(2201)] = 77682, + [SMALL_STATE(2202)] = 77693, + [SMALL_STATE(2203)] = 77704, + [SMALL_STATE(2204)] = 77715, + [SMALL_STATE(2205)] = 77724, + [SMALL_STATE(2206)] = 77733, + [SMALL_STATE(2207)] = 77744, + [SMALL_STATE(2208)] = 77755, + [SMALL_STATE(2209)] = 77766, + [SMALL_STATE(2210)] = 77775, + [SMALL_STATE(2211)] = 77786, + [SMALL_STATE(2212)] = 77797, + [SMALL_STATE(2213)] = 77808, + [SMALL_STATE(2214)] = 77819, + [SMALL_STATE(2215)] = 77830, + [SMALL_STATE(2216)] = 77841, + [SMALL_STATE(2217)] = 77852, + [SMALL_STATE(2218)] = 77863, + [SMALL_STATE(2219)] = 77874, + [SMALL_STATE(2220)] = 77885, + [SMALL_STATE(2221)] = 77896, + [SMALL_STATE(2222)] = 77907, + [SMALL_STATE(2223)] = 77918, + [SMALL_STATE(2224)] = 77929, + [SMALL_STATE(2225)] = 77940, + [SMALL_STATE(2226)] = 77951, + [SMALL_STATE(2227)] = 77962, + [SMALL_STATE(2228)] = 77973, + [SMALL_STATE(2229)] = 77984, + [SMALL_STATE(2230)] = 77995, + [SMALL_STATE(2231)] = 78006, + [SMALL_STATE(2232)] = 78017, + [SMALL_STATE(2233)] = 78028, + [SMALL_STATE(2234)] = 78039, + [SMALL_STATE(2235)] = 78050, + [SMALL_STATE(2236)] = 78061, + [SMALL_STATE(2237)] = 78072, + [SMALL_STATE(2238)] = 78083, + [SMALL_STATE(2239)] = 78094, + [SMALL_STATE(2240)] = 78105, + [SMALL_STATE(2241)] = 78116, + [SMALL_STATE(2242)] = 78127, + [SMALL_STATE(2243)] = 78138, + [SMALL_STATE(2244)] = 78149, + [SMALL_STATE(2245)] = 78160, + [SMALL_STATE(2246)] = 78171, + [SMALL_STATE(2247)] = 78182, + [SMALL_STATE(2248)] = 78193, + [SMALL_STATE(2249)] = 78204, + [SMALL_STATE(2250)] = 78215, + [SMALL_STATE(2251)] = 78226, + [SMALL_STATE(2252)] = 78237, + [SMALL_STATE(2253)] = 78248, + [SMALL_STATE(2254)] = 78259, + [SMALL_STATE(2255)] = 78270, + [SMALL_STATE(2256)] = 78281, + [SMALL_STATE(2257)] = 78292, + [SMALL_STATE(2258)] = 78303, + [SMALL_STATE(2259)] = 78314, + [SMALL_STATE(2260)] = 78325, + [SMALL_STATE(2261)] = 78336, + [SMALL_STATE(2262)] = 78347, + [SMALL_STATE(2263)] = 78358, + [SMALL_STATE(2264)] = 78369, + [SMALL_STATE(2265)] = 78380, + [SMALL_STATE(2266)] = 78391, + [SMALL_STATE(2267)] = 78402, + [SMALL_STATE(2268)] = 78413, + [SMALL_STATE(2269)] = 78424, + [SMALL_STATE(2270)] = 78435, + [SMALL_STATE(2271)] = 78446, + [SMALL_STATE(2272)] = 78457, + [SMALL_STATE(2273)] = 78468, + [SMALL_STATE(2274)] = 78479, + [SMALL_STATE(2275)] = 78490, + [SMALL_STATE(2276)] = 78501, + [SMALL_STATE(2277)] = 78512, + [SMALL_STATE(2278)] = 78523, + [SMALL_STATE(2279)] = 78534, + [SMALL_STATE(2280)] = 78545, + [SMALL_STATE(2281)] = 78556, + [SMALL_STATE(2282)] = 78567, + [SMALL_STATE(2283)] = 78578, + [SMALL_STATE(2284)] = 78589, + [SMALL_STATE(2285)] = 78600, + [SMALL_STATE(2286)] = 78611, + [SMALL_STATE(2287)] = 78622, + [SMALL_STATE(2288)] = 78631, + [SMALL_STATE(2289)] = 78642, + [SMALL_STATE(2290)] = 78653, + [SMALL_STATE(2291)] = 78662, + [SMALL_STATE(2292)] = 78673, + [SMALL_STATE(2293)] = 78684, + [SMALL_STATE(2294)] = 78695, + [SMALL_STATE(2295)] = 78706, + [SMALL_STATE(2296)] = 78717, + [SMALL_STATE(2297)] = 78728, + [SMALL_STATE(2298)] = 78739, + [SMALL_STATE(2299)] = 78750, + [SMALL_STATE(2300)] = 78761, + [SMALL_STATE(2301)] = 78772, + [SMALL_STATE(2302)] = 78783, + [SMALL_STATE(2303)] = 78794, + [SMALL_STATE(2304)] = 78805, + [SMALL_STATE(2305)] = 78814, + [SMALL_STATE(2306)] = 78825, + [SMALL_STATE(2307)] = 78836, + [SMALL_STATE(2308)] = 78845, + [SMALL_STATE(2309)] = 78856, + [SMALL_STATE(2310)] = 78867, + [SMALL_STATE(2311)] = 78878, + [SMALL_STATE(2312)] = 78889, + [SMALL_STATE(2313)] = 78900, + [SMALL_STATE(2314)] = 78911, + [SMALL_STATE(2315)] = 78922, + [SMALL_STATE(2316)] = 78933, + [SMALL_STATE(2317)] = 78941, + [SMALL_STATE(2318)] = 78949, + [SMALL_STATE(2319)] = 78957, + [SMALL_STATE(2320)] = 78965, + [SMALL_STATE(2321)] = 78973, + [SMALL_STATE(2322)] = 78981, + [SMALL_STATE(2323)] = 78989, + [SMALL_STATE(2324)] = 78997, + [SMALL_STATE(2325)] = 79005, + [SMALL_STATE(2326)] = 79013, + [SMALL_STATE(2327)] = 79021, + [SMALL_STATE(2328)] = 79029, + [SMALL_STATE(2329)] = 79037, + [SMALL_STATE(2330)] = 79045, + [SMALL_STATE(2331)] = 79053, + [SMALL_STATE(2332)] = 79061, + [SMALL_STATE(2333)] = 79069, + [SMALL_STATE(2334)] = 79077, + [SMALL_STATE(2335)] = 79085, + [SMALL_STATE(2336)] = 79093, + [SMALL_STATE(2337)] = 79101, + [SMALL_STATE(2338)] = 79109, + [SMALL_STATE(2339)] = 79117, + [SMALL_STATE(2340)] = 79125, + [SMALL_STATE(2341)] = 79135, + [SMALL_STATE(2342)] = 79143, + [SMALL_STATE(2343)] = 79151, + [SMALL_STATE(2344)] = 79159, + [SMALL_STATE(2345)] = 79167, + [SMALL_STATE(2346)] = 79177, + [SMALL_STATE(2347)] = 79185, + [SMALL_STATE(2348)] = 79193, + [SMALL_STATE(2349)] = 79203, + [SMALL_STATE(2350)] = 79211, + [SMALL_STATE(2351)] = 79219, + [SMALL_STATE(2352)] = 79227, + [SMALL_STATE(2353)] = 79235, + [SMALL_STATE(2354)] = 79243, + [SMALL_STATE(2355)] = 79251, + [SMALL_STATE(2356)] = 79259, + [SMALL_STATE(2357)] = 79267, + [SMALL_STATE(2358)] = 79275, + [SMALL_STATE(2359)] = 79283, + [SMALL_STATE(2360)] = 79291, + [SMALL_STATE(2361)] = 79299, + [SMALL_STATE(2362)] = 79307, + [SMALL_STATE(2363)] = 79315, + [SMALL_STATE(2364)] = 79323, + [SMALL_STATE(2365)] = 79331, + [SMALL_STATE(2366)] = 79339, + [SMALL_STATE(2367)] = 79347, + [SMALL_STATE(2368)] = 79355, + [SMALL_STATE(2369)] = 79363, + [SMALL_STATE(2370)] = 79371, + [SMALL_STATE(2371)] = 79379, + [SMALL_STATE(2372)] = 79387, + [SMALL_STATE(2373)] = 79395, + [SMALL_STATE(2374)] = 79403, + [SMALL_STATE(2375)] = 79411, + [SMALL_STATE(2376)] = 79419, + [SMALL_STATE(2377)] = 79427, + [SMALL_STATE(2378)] = 79435, + [SMALL_STATE(2379)] = 79443, + [SMALL_STATE(2380)] = 79451, + [SMALL_STATE(2381)] = 79459, + [SMALL_STATE(2382)] = 79467, + [SMALL_STATE(2383)] = 79475, + [SMALL_STATE(2384)] = 79483, + [SMALL_STATE(2385)] = 79491, + [SMALL_STATE(2386)] = 79499, + [SMALL_STATE(2387)] = 79507, + [SMALL_STATE(2388)] = 79515, + [SMALL_STATE(2389)] = 79525, + [SMALL_STATE(2390)] = 79533, + [SMALL_STATE(2391)] = 79541, + [SMALL_STATE(2392)] = 79549, + [SMALL_STATE(2393)] = 79557, + [SMALL_STATE(2394)] = 79565, + [SMALL_STATE(2395)] = 79573, + [SMALL_STATE(2396)] = 79581, + [SMALL_STATE(2397)] = 79589, + [SMALL_STATE(2398)] = 79597, + [SMALL_STATE(2399)] = 79605, + [SMALL_STATE(2400)] = 79613, + [SMALL_STATE(2401)] = 79621, + [SMALL_STATE(2402)] = 79629, + [SMALL_STATE(2403)] = 79637, + [SMALL_STATE(2404)] = 79645, + [SMALL_STATE(2405)] = 79653, + [SMALL_STATE(2406)] = 79661, + [SMALL_STATE(2407)] = 79671, + [SMALL_STATE(2408)] = 79679, + [SMALL_STATE(2409)] = 79687, + [SMALL_STATE(2410)] = 79695, + [SMALL_STATE(2411)] = 79703, + [SMALL_STATE(2412)] = 79711, + [SMALL_STATE(2413)] = 79719, + [SMALL_STATE(2414)] = 79727, + [SMALL_STATE(2415)] = 79735, + [SMALL_STATE(2416)] = 79745, + [SMALL_STATE(2417)] = 79753, + [SMALL_STATE(2418)] = 79761, + [SMALL_STATE(2419)] = 79771, + [SMALL_STATE(2420)] = 79779, + [SMALL_STATE(2421)] = 79787, + [SMALL_STATE(2422)] = 79795, + [SMALL_STATE(2423)] = 79803, + [SMALL_STATE(2424)] = 79811, + [SMALL_STATE(2425)] = 79819, + [SMALL_STATE(2426)] = 79827, + [SMALL_STATE(2427)] = 79835, + [SMALL_STATE(2428)] = 79843, + [SMALL_STATE(2429)] = 79851, + [SMALL_STATE(2430)] = 79859, + [SMALL_STATE(2431)] = 79867, + [SMALL_STATE(2432)] = 79875, + [SMALL_STATE(2433)] = 79883, + [SMALL_STATE(2434)] = 79891, + [SMALL_STATE(2435)] = 79899, + [SMALL_STATE(2436)] = 79907, + [SMALL_STATE(2437)] = 79915, + [SMALL_STATE(2438)] = 79923, + [SMALL_STATE(2439)] = 79931, + [SMALL_STATE(2440)] = 79939, + [SMALL_STATE(2441)] = 79947, + [SMALL_STATE(2442)] = 79955, + [SMALL_STATE(2443)] = 79963, + [SMALL_STATE(2444)] = 79971, + [SMALL_STATE(2445)] = 79979, + [SMALL_STATE(2446)] = 79989, + [SMALL_STATE(2447)] = 79997, + [SMALL_STATE(2448)] = 80005, + [SMALL_STATE(2449)] = 80013, + [SMALL_STATE(2450)] = 80021, + [SMALL_STATE(2451)] = 80029, + [SMALL_STATE(2452)] = 80037, + [SMALL_STATE(2453)] = 80045, + [SMALL_STATE(2454)] = 80053, + [SMALL_STATE(2455)] = 80061, + [SMALL_STATE(2456)] = 80069, + [SMALL_STATE(2457)] = 80077, + [SMALL_STATE(2458)] = 80085, + [SMALL_STATE(2459)] = 80093, + [SMALL_STATE(2460)] = 80101, + [SMALL_STATE(2461)] = 80109, + [SMALL_STATE(2462)] = 80117, + [SMALL_STATE(2463)] = 80125, + [SMALL_STATE(2464)] = 80133, + [SMALL_STATE(2465)] = 80141, + [SMALL_STATE(2466)] = 80149, + [SMALL_STATE(2467)] = 80157, + [SMALL_STATE(2468)] = 80165, + [SMALL_STATE(2469)] = 80173, + [SMALL_STATE(2470)] = 80181, + [SMALL_STATE(2471)] = 80189, + [SMALL_STATE(2472)] = 80197, + [SMALL_STATE(2473)] = 80205, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -81804,1640 +131484,2115 @@ 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(456), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(31), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1008), - [847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(97), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(220), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(97), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(201), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(231), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(130), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(92), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(133), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 38), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 38), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 41), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 41), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 40), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(254), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), REDUCE(sym_assignment_expression, 3, 0, 40), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 40), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 15), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(281), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1240), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1020), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(876), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(268), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1266), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1200), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(908), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1130), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1339), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(895), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(980), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(921), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1477), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1339), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(963), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(104), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1383), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [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 = 1, .reusable = true}}, SHIFT(1096), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3296] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_non_reserved_keyword, 1, 0, 105), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1582), + [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2141), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2142), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(704), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(18), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1940), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(745), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1829), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(795), + [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(791), + [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 92), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 92), + [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 31), + [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 31), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 53), + [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 53), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(668), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(669), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(812), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(829), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(786), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(724), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 63), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 63), + [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 69), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 69), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 69), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 69), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 73), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 73), + [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 73), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 73), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 81), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 81), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 81), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 81), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 85), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 85), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 85), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 85), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 81), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 81), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 81), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 81), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 90), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 90), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 90), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 90), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 65), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 65), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 65), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 65), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 30), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 30), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 30), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 30), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 5), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 5), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 23), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 23), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 3), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), SHIFT(51), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 71), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 71), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 83), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 83), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 56), + [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 56), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 5), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 5), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 19), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 19), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 39), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 39), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 40), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 40), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 41), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 41), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 42), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 42), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 97), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 97), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 94), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 94), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 20), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 20), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 81), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 81), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 46), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 46), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 48), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 48), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 49), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 49), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 35), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 35), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 69), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 69), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 90), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 90), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 101), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 101), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 102), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 102), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 104), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 104), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 48), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 48), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 48), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 48), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 15), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 15), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 21), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 21), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 88), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 88), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 81), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 81), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 15), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 15), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 18), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 18), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 95), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 95), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 72), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 72), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 25), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 25), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 12), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 12), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 18), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 18), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 25), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 25), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 55), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 55), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 65), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 65), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 16), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 16), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 103), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 103), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 5), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 5), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 57), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 57), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 2), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 2), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 24), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 24), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 30), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 30), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 56), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 56), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 22), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 22), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 96), + [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 96), + [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 84), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 84), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 73), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 73), + [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 85), + [1562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(308), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(254), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(443), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(621), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(288), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(349), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 87), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 87), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 99), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 99), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 100), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 100), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 93), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 93), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 6), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 6), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 7), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 7), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 7), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 7), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 26), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 26), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 68), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 68), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 66), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 66), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 70), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 70), + [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 26), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 26), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 74), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 74), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 80), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 80), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 5), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 5), + [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 8), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 8), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), + [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), + [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 10), + [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 10), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 13), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 13), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 13), REDUCE(sym_object_pattern, 3, 0, 14), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 14), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 31), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 31), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 32), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 32), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 33), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 33), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 34), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 34), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 37), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 37), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 43), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 43), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 44), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 44), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 45), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 45), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 47), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 47), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 13), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 13), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 58), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 58), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 67), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 67), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 66), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 66), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 38), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 38), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 38), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 82), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 36), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 14), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 13), REDUCE(sym_object_pattern, 3, 0, 14), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 53), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 53), SHIFT(571), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 50), REDUCE(sym_assignment_expression, 3, 0, 36), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 50), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 36), REDUCE(sym_assignment_expression, 3, 0, 36), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 36), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 51), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 36), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 53), SHIFT(590), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1897), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1675), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1574), + [2894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(635), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1919), + [2900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1910), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1595), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1801), + [2909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1914), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1583), + [2915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1665), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 64), SHIFT_REPEAT(1675), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 39), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 39), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 11), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 11), + [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 11), SHIFT_REPEAT(1914), + [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 98), + [3036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 98), + [3038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 52), + [3040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 52), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 90), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 90), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 91), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 91), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), + [3056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 81), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 81), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 69), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 69), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 76), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 76), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 31), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 31), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 8), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 8), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 5), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 5), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 28), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 28), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 28), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 28), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 28), SHIFT_REPEAT(1651), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 1), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 1), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [3380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [3388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 59), SHIFT_REPEAT(1773), + [3391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 59), SHIFT_REPEAT(160), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 59), + [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 59), SHIFT_REPEAT(1773), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 3), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 3), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 3), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 14), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 4), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 4), SHIFT(2209), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 29), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 78), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 39), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 39), + [3582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 60), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 62), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(308), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 17), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 26), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 26), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 58), + [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 58), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 27), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 27), + [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 13), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 14), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 3), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 3), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1939), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 14), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 13), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 51), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(288), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 4), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(617), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), + [3963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(443), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(349), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 15), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(621), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 4), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [4065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1581), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 89), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 61), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 75), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 75), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 77), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 79), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4275] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), }; enum ts_external_scanner_symbol_identifiers { @@ -83462,7 +133617,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_jsx_text] = sym_jsx_text, }; -static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__automatic_semicolon] = true, [ts_external_token__template_chars] = true, @@ -83476,34 +133631,43 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_comment] = true, }, [3] = { - [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, }, [4] = { - [ts_external_token__automatic_semicolon] = true, [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, }, [5] = { [ts_external_token__automatic_semicolon] = true, + [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, + [ts_external_token_PIPE_PIPE] = true, }, [6] = { + [ts_external_token__automatic_semicolon] = true, [ts_external_token_html_comment] = true, - [ts_external_token_jsx_text] = true, + [ts_external_token_PIPE_PIPE] = true, }, [7] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token_html_comment] = true, + }, + [8] = { + [ts_external_token_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [9] = { [ts_external_token__template_chars] = true, [ts_external_token_html_comment] = true, [ts_external_token_escape_sequence] = true, }, - [8] = { + [10] = { [ts_external_token_html_comment] = true, [ts_external_token_escape_sequence] = true, }, - [9] = { + [11] = { [ts_external_token_html_comment] = true, [ts_external_token_regex_pattern] = true, }, @@ -83566,7 +133730,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { .primary_state_ids = ts_primary_state_ids, .name = "javascript", .reserved_words = &ts_reserved_words[0][0], - .max_reserved_word_set_size = 12, + .max_reserved_word_set_size = 35, }; return &language; }